Merge version_1_1777038838831 into main
Merge version_1_1777038838831 into main
This commit was merged in pull request #1.
This commit is contained in:
88
src/pages/BlogPage.tsx
Normal file
88
src/pages/BlogPage.tsx
Normal file
@@ -0,0 +1,88 @@
|
||||
import BlogSimpleCards from "@/components/sections/blog/BlogSimpleCards";
|
||||
import NavbarCentered from '@/components/ui/NavbarCentered';
|
||||
import FooterBasic from '@/components/sections/footer/FooterBasic';
|
||||
import { Coffee, Heart, Leaf } from "lucide-react";
|
||||
|
||||
const BlogPage = () => {
|
||||
return ( <>
|
||||
<div id="nav">
|
||||
<NavbarCentered logo="Brew & Bean"
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
ctaButton={{
|
||||
text: "Order Online",
|
||||
href: "#contact",
|
||||
}} />
|
||||
</div>
|
||||
<div id="blog-page-body">
|
||||
<BlogSimpleCards
|
||||
tag="Blog"
|
||||
title="Latest Articles"
|
||||
description="Stay updated with our latest insights and news"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<FooterBasic columns={[
|
||||
{
|
||||
title: "Brew & Bean",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
leftText="© 2024 Brew & Bean."
|
||||
rightText="Crafted with passion in the city." />
|
||||
</div>
|
||||
</>)
|
||||
};
|
||||
|
||||
export default BlogPage;
|
||||
Reference in New Issue
Block a user