Compare commits
4 Commits
version_9
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| 5e24734de3 | |||
| 0b21a992b8 | |||
| ec9e438b4d | |||
| 63f115dbbc |
@@ -3,7 +3,6 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Instagram, Facebook, MapPin } from "lucide-react";
|
||||
|
||||
@@ -35,32 +34,6 @@ export default function FullMenuPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
title="Our Full Menu"
|
||||
description="Fresh, local ingredients prepared daily. Prices are omitted for your convenience."
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "m1", name: "Signature Bagel Sandwich", price: "", imageSrc: "" },
|
||||
{ id: "m2", name: "Breakfast Wrap", price: "", imageSrc: "" },
|
||||
{ id: "m3", name: "Plain Bagel", price: "", imageSrc: "" },
|
||||
{ id: "m4", name: "Everything Bagel", price: "", imageSrc: "" },
|
||||
{ id: "m5", name: "Egg & Cheese Sandwich", price: "", imageSrc: "" },
|
||||
{ id: "m6", name: "Assorted Pastries", price: "", imageSrc: "" },
|
||||
{ id: "m7", name: "Coffee & Beverages", price: "", imageSrc: "" },
|
||||
{ id: "m8", name: "Breakfast Sides", price: "", imageSrc: "" },
|
||||
{ id: "m9", name: "French Toast", price: "", imageSrc: "" },
|
||||
{ id: "m10", name: "Pancakes", price: "", imageSrc: "" },
|
||||
{ id: "m11", name: "Breakfast Plates", price: "", imageSrc: "" },
|
||||
{ id: "m12", name: "Bagels", price: "", imageSrc: "" },
|
||||
{ id: "m13", name: "Merch", price: "", imageSrc: "" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Mr. Bagel Gorham"
|
||||
@@ -75,4 +48,4 @@ export default function FullMenuPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -6,10 +6,9 @@ import ContactText from '@/components/sections/contact/ContactText';
|
||||
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, Instagram, Facebook, MapPin } from "lucide-react";
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Coffee, Instagram, Facebook, MapPin, Quote } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -72,32 +71,19 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
showRating={true}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "Signature Bagel Sandwich", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-aaw5kzmk.png" },
|
||||
{ id: "2", name: "Breakfast Wrap", price: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CJ0t0AzWEA1zu6ou9EvdZJLTtm/uploaded-1776093445960-4j6162y3.png" },
|
||||
]}
|
||||
title="Fresh From Our Kitchen"
|
||||
description="Explore our delicious selection of breakfast plates, sandwiches, and fresh baked goods."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Alex P.", date: "Oct 2024", title: "Amazing local gem", quote: "The best bagels in Gorham, hands down. The staff is so friendly and everything is always super fresh.", tag: "Local Regular", avatarSrc: "https://ui-avatars.com/api/?name=Alex+P&background=random" },
|
||||
{ id: "2", name: "Sarah J.", date: "Nov 2024", title: "Daily morning stop", quote: "I never start my morning without a coffee and a wrap here. Consistently great service and delicious food.", tag: "Daily Customer", avatarSrc: "https://ui-avatars.com/api/?name=Sarah+J&background=random" },
|
||||
{ id: "3", name: "Mike R.", date: "Jan 2025", title: "Great breakfast plates", quote: "The portions are huge and the quality is unmatched. My go-to breakfast spot on weekends.", tag: "Foodie", avatarSrc: "https://ui-avatars.com/api/?name=Mike+R&background=random" }
|
||||
]}
|
||||
title="Loved by Gorham Locals"
|
||||
description="See why we're considered the best local breakfast gem in town."
|
||||
testimonials={[
|
||||
{ id: "1", name: "Alex P.", handle: "@alexp", testimonial: "The best bagels in Gorham, hands down. The staff is so friendly and everything is always super fresh.", rating: 5, icon: Quote },
|
||||
{ id: "2", name: "Sarah J.", handle: "@sarahj", testimonial: "I never start my morning without a coffee and a wrap here. Consistently great service and delicious food.", rating: 5, icon: Quote },
|
||||
{ id: "3", name: "Mike R.", handle: "@miker", testimonial: "The portions are huge and the quality is unmatched. My go-to breakfast spot on weekends.", rating: 5, icon: Quote }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -126,4 +112,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user