2 Commits

Author SHA1 Message Date
5e24734de3 Update src/app/page.tsx 2026-04-13 16:42:51 +00:00
0b21a992b8 Merge version_10 into main
Merge version_10 into main
2026-04-13 16:40:19 +00:00

View File

@@ -7,8 +7,8 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
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,16 +72,18 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
<TestimonialCardThirteen
showRating={true}
animationType="slide-up"
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>
@@ -110,4 +112,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}