mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
18 lines
640 B
TypeScript
18 lines
640 B
TypeScript
|
|
import { Author, CardBlog, CollapseCommon, Layout, RelevantBlogPosts } from 'src/components/common';
|
|
import { HomeBanner, HomeCategories, HomeCollection, HomeCTA, HomeFeature, HomeRecipe, HomeSubscribe, HomeVideo } from 'src/components/modules/home';
|
|
import {SelectCommon} from 'src/components/common'
|
|
import { QUERY_KEY, ROUTE } from 'src/utils/constanst.utils'
|
|
import card from "../public/assets/images/card.png"
|
|
import { BlogsList, FeaturedCardBlog, BlogHeading, BlogBreadCrumb, BlogsPage } from 'src/components/modules/blogs';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<BlogsPage />
|
|
</>
|
|
)
|
|
}
|
|
|
|
Home.Layout = Layout
|