diff --git a/src/app/our-story/page.tsx b/src/app/our-story/page.tsx new file mode 100644 index 0000000..af6dc0b --- /dev/null +++ b/src/app/our-story/page.tsx @@ -0,0 +1,74 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Facebook, Instagram, Star } from "lucide-react"; + +export const metadata = { + title: 'Our Story | Buzz Menifee Coffee', + description: 'Learn about the journey and passion behind Buzz Menifee Coffee, from our humble beginnings to becoming a beloved local spot.', +}; + +export default function OurStoryPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 0e8cf20..0f1e1d8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,7 +35,7 @@ export default function LandingPage() { { name: "Home", id: "#hero"}, { - name: "About Us", id: "#about"}, + name: "About Us", id: "/our-story"}, { name: "Our Menu", id: "#menu"}, { @@ -116,7 +116,7 @@ export default function LandingPage() { ]} buttons={[ { - text: "Our Story", href: "#"}, + text: "Our Story", href: "/our-story"}, ]} /> @@ -294,4 +294,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file