diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ff83479..c798c6e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,47 +3,35 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import AboutMetric from '@/components/sections/about/AboutMetric'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Cake, Users, Award } from "lucide-react"; const navLinks = [ { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" } ]; export default function AboutPage() { return ( - + -
- -
+
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index aedb5f3..5bffefa 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,44 +3,31 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; const navLinks = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, + { name: "Order", id: "/order" }, { name: "Contact", id: "/contact" } ]; export default function ContactPage() { return ( - + -
- -
+
diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 73eca66..8b84e45 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -3,46 +3,38 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +const navLinks = [ + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } +]; + export default function MenuPage() { return ( - + - - + ); -} +} \ No newline at end of file diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx index 32d5fa5..db56c49 100644 --- a/src/app/order/page.tsx +++ b/src/app/order/page.tsx @@ -3,42 +3,37 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +const navLinks = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Order", id: "/order" }, + { name: "Contact", id: "/contact" } +]; + export default function OrderPage() { return ( - + - - + ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 5e3724a..db30171 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; const navLinks = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, + { name: "Order", id: "/order" }, { name: "Contact", id: "/contact" } ]; @@ -39,7 +40,7 @@ export default function LandingPage() { background={{ variant: "gradient-bars" }} title="Homemade Cheesecakes & Sweet Treats" description="Freshly baked with love in Northern Cambria." - buttons={[{ text: "Order Now", href: "/contact" }]} + buttons={[{ text: "Order Now", href: "/order" }]} imageSrc="http://img.b2bpic.net/free-photo/waitress-holding-cake_23-2147821281.jpg?_wi=1" testimonials={[{ name: "Jane Doe", handle: "@janedoe", testimonial: "The best cheesecake I've ever had!", rating: 5 }]} /> @@ -49,7 +50,7 @@ export default function LandingPage() { diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 7b2f718..f3435b3 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-mulish), sans-serif; + font-family: var(--font-playfair), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-mulish), sans-serif; + font-family: var(--font-playfair), sans-serif; } diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b86f01b..eecf459 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,7 +10,7 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #fbf8f5; + --background: #fdfbf7; --card: #f4ede6; --foreground: #4a3c31; --primary-cta: #d4a373;