commerce/pages/index.tsx
lytrankieio123 4155ff69d7 🎨 styles: home CTA section
:%s
2021-08-26 15:05:52 +07:00

16 lines
243 B
TypeScript

import { Layout } from 'src/components/common';
import { HomeBanner, HomeCTA } from 'src/components/modules/home';
export default function Home() {
return (
<>
<HomeBanner />
<HomeCTA/>
</>
)
}
Home.Layout = Layout