mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 04:14:18 +00:00
14 lines
378 B
TypeScript
14 lines
378 B
TypeScript
import { Layout } from 'src/components/common';
|
|
import { BlogsList, FeaturedCardBlog, BlogHeading, BlogBreadCrumb } from 'src/components/modules/blogs';
|
|
|
|
export default function BlogsPage() {
|
|
return(
|
|
<>
|
|
<BlogBreadCrumb />
|
|
<BlogHeading />
|
|
<FeaturedCardBlog />
|
|
<BlogsList />
|
|
</>
|
|
)
|
|
}
|
|
BlogsPage.Layout = Layout |