diff --git a/src/app/page.tsx b/src/app/page.tsx index 11b7b4a..cc9bd7f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,13 +8,12 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import Link from "next/link"; const navItems = [{ name: "Home", id: "/" }]; export default function Page() { return ( - + @@ -23,6 +22,7 @@ export default function Page() { logoText="Pizza al Taglio" description="Authentic Roman-style pizza, crafted with passion." buttons={[{ text: "Order Now", href: "#varieta" }]} + background={{ variant: "plain" }} />
@@ -31,12 +31,14 @@ export default function Page() { title="Recognized Quality" description="Trusted by food critics and local pizza lovers alike." textboxLayout="default" + useInvertedBackground={false} />
@@ -46,6 +48,7 @@ export default function Page() { gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" + useInvertedBackground={false} products={[ { id: "1", brand: "Classic", name: "Margherita", price: "$8.00", rating: 5, reviewCount: "120", imageSrc: "https://images.unsplash.com/photo-1574071318508-1cdbab80d002?q=80&w=600" }, { id: "2", brand: "Premium", name: "Prosciutto", price: "$12.00", rating: 4, reviewCount: "85", imageSrc: "https://images.unsplash.com/photo-1604382354936-07c5d9983bd3?q=80&w=600" }, @@ -60,6 +63,7 @@ export default function Page() { gridVariant="one-large-right-three-stacked-left" animationType="blur-reveal" textboxLayout="default" + useInvertedBackground={false} testimonials={[ { id: "1", name: "Luca", role: "Local", company: "Rome", rating: 5 }, { id: "2", name: "Sarah", role: "Traveler", company: "London", rating: 5 } @@ -70,6 +74,7 @@ export default function Page() {
@@ -82,4 +87,4 @@ export default function Page() {
); -} +} \ No newline at end of file