From 1434089a88ed1de244e73cab9ef70a533b26a398 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:14:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 594e81f..805ed2a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -37,9 +37,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 3d8ad4a761169a2ff45747de46ced6f73fe1a6ca Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:14:55 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 160 ++++++++++++++++++++++++++++------------------- 1 file changed, 95 insertions(+), 65 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a3bbba6..e665a7a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,14 +1,22 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; -import AboutMetric from '@/components/sections/about/AboutMetric'; -import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import ContactFaq from '@/components/sections/contact/ContactFaq'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Award, Clock, Gem, Heart, Phone, Sparkles, Users } from 'lucide-react'; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; +import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; +import ContactFaq from "@/components/sections/contact/ContactFaq"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { + Award, + Clock, + Gem, + Heart, + Phone, + Sparkles, + Users, +} from "lucide-react"; export default function LandingPage() { return ( @@ -31,7 +39,7 @@ export default function LandingPage() { { name: "Heritage", id: "about" }, { name: "Collections", id: "collections" }, { name: "Services", id: "services" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, ]} brandName="Gioielleria" bottomLeftText="Giugliano in Campania, NA" @@ -52,17 +60,19 @@ export default function LandingPage() { useInvertedBackground={false} buttons={[ { text: "Scopri le Collezioni", href: "#collections" }, - { text: "Contattaci", href: "#contact" } + { text: "Contattaci", href: "#contact" }, ]} testimonials={[ { name: "Marco Rossi", handle: "Collezionista Privato", testimonial: "Qualità senza compromessi. Ogni pezzo è un'opera d'arte.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg?_wi=1", imageAlt: "satisfied customer portrait professional headshot confident woman elegant portrait" - }, + imageSrc: + "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", imageAlt: + "satisfied customer portrait professional headshot confident woman elegant portrait"}, { - name: "Giulia Bianchi", handle: "Esperta di Gioielli", testimonial: "L'affidabilità e l'attenzione ai dettagli sono straordinarie.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "business professional portrait confident man headshot professional photo" - } + name: "Giulia Bianchi", handle: "Esperta di Gioielli", testimonial: + "L'affidabilità e l'attenzione ai dettagli sono straordinarie.", rating: 5, + imageSrc: + "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "business professional portrait confident man headshot professional photo"}, ]} background={{ variant: "plain" }} /> @@ -77,7 +87,7 @@ export default function LandingPage() { { icon: Clock, label: "Anni di Tradizione", value: "70+" }, { icon: Users, label: "Generazioni di Maestria", value: "4" }, { icon: Award, label: "Oro 18 kt e Diamanti", value: "Garantiti" }, - { icon: Heart, label: "Dedizione ai Dettagli", value: "100%" } + { icon: Heart, label: "Dedizione ai Dettagli", value: "100%" }, ]} /> @@ -86,14 +96,20 @@ export default function LandingPage() { -- 2.49.1