🎨 styles: home subscribe

:%s
This commit is contained in:
lytrankieio123
2021-08-26 16:13:11 +07:00
parent 4970dbe364
commit 3c09ad1770
12 changed files with 132 additions and 9 deletions

View File

@@ -1,13 +1,14 @@
import { Layout } from 'src/components/common';
import { HomeBanner, HomeCTA } from 'src/components/modules/home';
import { HomeBanner, HomeCTA, HomeSubscribe } from 'src/components/modules/home';
export default function Home() {
return (
<>
<HomeBanner />
<HomeCTA/>
<HomeCTA />
<HomeSubscribe />
</>
)
}