Update src/app/page.tsx

This commit is contained in:
2025-12-26 15:11:39 +00:00
parent 9a54247e31
commit 7d5c4fbaa0

View File

@@ -9,7 +9,7 @@ import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCa
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import { Award, Calendar, Heart, Sparkles, Star, Linkedin } from "lucide-react"; import { Award, Calendar, Heart, Sparkles, Star } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -107,6 +107,7 @@ export default function LandingPage() {
imageAlt="Warm and inviting Trattoria dining room" imageAlt="Warm and inviting Trattoria dining room"
imagePosition="right" imagePosition="right"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
rating={5}
/> />
</div> </div>
@@ -143,6 +144,16 @@ export default function LandingPage() {
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
tag="Dining Excellence" tag="Dining Excellence"
tagIcon={Award} tagIcon={Award}
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766760339172-wtq2r8qq.jpg",
imageAlt: "Quality ingredients selection"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766416780858-eeoell34.jpg",
imageAlt: "Elegant Trattoria ambiance"
}
]}
/> />
</div> </div>
@@ -300,4 +311,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }