diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..d82b7a2 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,59 @@ +"use client"; + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; + +export default function AboutPage() { + const updatedNavItems = [ + { name: "Home", href: "/" }, + { name: "Trattamenti", href: "/#products" }, + { name: "Chi Siamo", href: "/about" }, + { name: "Testimonianze", href: "/#testimonials" }, + { name: "Domande Frequenti", href: "/#faq" }, + { name: "Contatti", href: "/#contact" } + ]; + + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index ee7d371..2fd61c0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,15 @@ import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import { Sparkles, Heart, Leaf } from "lucide-react"; export default function LandingPage() { + const updatedNavItems = [ + { name: "Home", href: "/" }, + { name: "Trattamenti", href: "/#products" }, + { name: "Chi Siamo", href: "/about" }, + { name: "Testimonianze", href: "/#testimonials" }, + { name: "Domande Frequenti", href: "/#faq" }, + { name: "Contatti", href: "/#contact" } + ]; + return ( @@ -47,8 +49,7 @@ export default function LandingPage() { title="Scatena la Tua Luminosità Interiore" description="A Beauty Elite, uniamo arte e scienza per rivelare la tua bellezza più autentica. Scopri un santuario dove trattamenti di lusso incontrano cure personalizzate per un'esperienza davvero trasformativa." background={{ variant: "radial-gradient" }} - buttons={[{ text: "Esplora i Trattamenti", href: "#products" }] - } + buttons={[{ text: "Esplora i Trattamenti", href: "/#products" }]} mediaItems={[ { imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-bathroom_1157-20467.jpg", imageAlt: "Ambiente spa sereno con luci soffuse" }, { imageSrc: "http://img.b2bpic.net/free-photo/young-woman-relaxing-spa-salon_176420-7518.jpg", imageAlt: "Donna che riceve un lussuoso trattamento viso" }, @@ -62,10 +63,8 @@ export default function LandingPage() {