diff --git a/src/app/page.tsx b/src/app/page.tsx index cdb5f58..e979b6f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,15 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import ContactText from '@/components/sections/contact/ContactText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Coffee } from "lucide-react"; +import { Coffee, Instagram, Facebook, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -60,9 +60,9 @@ export default function LandingPage() { ]} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-assortment_23-2149086037.jpg?_wi=1", imageAlt: "Fresh artisan bagel sandwich"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-rw6mue2h.png", imageAlt: "Fresh artisan bagel sandwich"}, { - imageSrc: "http://img.b2bpic.net/free-photo/croissants-vanilla-pie-table-with-glass-milk_114579-4265.jpg", imageAlt: "Croissants and vanilla pie on the table"} + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-dczfvy9h.png", imageAlt: "Croissants and fresh breakfast"} ]} mediaAnimation="slide-up" rating={5} @@ -77,7 +77,7 @@ export default function LandingPage() { title="Cooking with Love & Community Spirit" description="At Mr. Bagel Gorham, we are more than just a bagel shop. We are a family of passionate foodies dedicated to serving the most authentic, freshly cooked breakfasts and lunches in town. Every meal is made to order, and every guest is treated like a regular." subdescription="Whether you're stopping in for a quick morning coffee or sitting down for a full breakfast plate with friends, you'll feel the local heart in every bite. Come join us at 13 New Portland Rd!" - imageSrc="http://img.b2bpic.net/free-photo/bar-still-life-with-cakes-table_23-2147821330.jpg" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445959-5gfka3co.png" imageAlt="Friendly staff inside Mr. Bagel" icon={Coffee} /> @@ -91,9 +91,9 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "1", name: "Breakfast Burrito", price: "$11.64", imageSrc: "http://img.b2bpic.net/free-photo/delicious-grilled-chicken-wrap_123827-36140.jpg"}, + id: "1", name: "Breakfast Burrito", price: "$11.64", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-aaw5kzmk.png"}, { - id: "2", name: "Classic Breakfast Sandwich", price: "$4.04", imageSrc: "http://img.b2bpic.net/free-photo/sweet-loaf-platter_114579-87734.jpg"}, + id: "2", name: "Classic Breakfast Sandwich", price: "$4.04", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-4j6162y3.png"}, { id: "3", name: "Western Omelette", price: "$11.13", imageSrc: "http://img.b2bpic.net/free-photo/spanich-omelet-plate_74190-5956.jpg"}, ]} @@ -133,13 +133,10 @@ export default function LandingPage() {
-