diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 8186658..c4159fa 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -7,7 +7,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import { Sparkles, Cake, Leaf, Palmtree, Flower, Cupcake, CalendarCheck, Cookie, CandyCane, HeartHandshake } from "lucide-react"; +import { Sparkles, Cake, Leaf, Palmtree, Flower, CalendarCheck, Cookie, CandyCane, HeartHandshake } from "lucide-react"; export default function LandingPage() { return ( @@ -36,7 +36,7 @@ export default function LandingPage() { { name: "Gallery", id: "/gallery"}, { - name: "Contact", id: "/contact"}, + name: "Contact", id: "/contact"} ]} brandName="Miami.Cakes" button={{ @@ -57,7 +57,7 @@ export default function LandingPage() { { text: "Order Now", href: "/order"}, { - text: "Get a Custom Quote", href: "/contact"}, + text: "Get a Custom Quote", href: "/contact"} ]} buttonAnimation="slide-up" /> @@ -83,7 +83,7 @@ export default function LandingPage() { { id: "cake-5", name: "Red Velvet Romance", price: "$65.00", imageSrc: "http://img.b2bpic.net/free-photo/delicious-red-velvet-cake_23-2149021422.jpg", imageAlt: "Red Velvet Romance Cake"}, { - id: "cake-6", name: "Coconut Lime Cloud", price: "$72.00", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-cake-with-flowers_23-2149175276.jpg", imageAlt: "Coconut Lime Cloud Cake"}, + id: "cake-6", name: "Coconut Lime Cloud", price: "$72.00", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-cake-with-flowers_23-2149175276.jpg", imageAlt: "Coconut Lime Cloud Cake"} ]} /> @@ -103,7 +103,7 @@ export default function LandingPage() { }, { id: "2", name: "David L.", handle: "@EventPlannerDave", testimonial: "As an event planner, I work with many vendors, and Miami.Cakes consistently exceeds expectations. Their attention to detail and ability to bring complex designs to life is unmatched. Highly recommend!", rating: 5, - icon: Cupcake + icon: Cake }, { id: "3", name: "Jessica M.", handle: "@BirthdayBashJess", testimonial: "Ordered a custom birthday cake for my daughter, and it was perfect! Not only beautiful but incredibly tasty. The process was smooth, and delivery was on time. Will definitely order again!", rating: 5, @@ -120,7 +120,7 @@ export default function LandingPage() { { id: "6", name: "Carlos V.", handle: "@MiamiGroom", testimonial: "Our experience with Miami.Cakes for our engagement party cake was fantastic. They were so accommodating with our design ideas, and the cake tasted as good as it looked!", rating: 5, icon: HeartHandshake - }, + } ]} /> @@ -137,8 +137,8 @@ export default function LandingPage() { { label: "Birthday Cakes", href: "/menu"}, { - label: "Cupcakes", href: "/menu"}, - ], + label: "Cupcakes", href: "/menu"} + ] }, { title: "Company", items: [ @@ -147,17 +147,17 @@ export default function LandingPage() { { label: "Gallery", href: "/gallery"}, { - label: "Contact", href: "/contact"}, - ], + label: "Contact", href: "/contact"} + ] }, { title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy"}, { - label: "Terms of Service", href: "/terms"}, - ], - }, + label: "Terms of Service", href: "/terms"} + ] + } ]} logoText="Miami.Cakes" copyrightText="© 2024 Miami.Cakes. All rights reserved." diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx index fd6ac7f..90ecce7 100644 --- a/src/app/order/page.tsx +++ b/src/app/order/page.tsx @@ -2,19 +2,19 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import { ShoppingCart } from "lucide-react"; -export default function LandingPage() { +export default function OrderPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
- - +
);