feat: BlogsPage

This commit is contained in:
unknown
2021-09-06 11:07:45 +07:00
parent 6e1f2bc868
commit 1e1937290d
16 changed files with 234 additions and 8 deletions

View File

@@ -0,0 +1,4 @@
.breadCrumbWrapper{
@apply py-12;
padding-left: 3.2rem;
}

View File

@@ -0,0 +1,16 @@
import { BreadcrumbCommon } from "src/components/common"
import s from './BlogBreadCrumb.module.scss'
const BLOG_DATA = [
{link: "/blogs", name: "Blog"},
];
const BlogBreadCrumb = () => {
return (
<section className={s.breadCrumbWrapper}>
<BreadcrumbCommon crumbs={BLOG_DATA} showHomePage={true}/>
</section>
)
}
export default BlogBreadCrumb