Merge version_4 into main #6

Merged
bender merged 2 commits from version_4 into main 2026-06-12 08:03:50 +00:00
2 changed files with 12 additions and 12 deletions

View File

@@ -7,12 +7,12 @@ 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" }
{ name: "Home", id: "/" },
{ name: "Trattamenti", id: "/#products" },
{ name: "Chi Siamo", id: "/about" },
{ name: "Testimonianze", id: "/#testimonials" },
{ name: "Domande Frequenti", id: "/#faq" },
{ name: "Contatti", id: "/#contact" }
];
return (

View File

@@ -14,12 +14,12 @@ 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" }
{ name: "Home", id: "/" },
{ name: "Trattamenti", id: "/#products" },
{ name: "Chi Siamo", id: "/about" },
{ name: "Testimonianze", id: "/#testimonials" },
{ name: "Domande Frequenti", id: "/#faq" },
{ name: "Contatti", id: "/#contact" }
];
return (