Merge version_1_1781526020941 into main #1

Merged
bender merged 2 commits from version_1_1781526020941 into main 2026-06-15 12:21:31 +00:00

View File

@@ -7,94 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "Chi Sono",
"href": "#about"
},
{
"name": "Servizi",
"href": "#features"
},
{
"name": "Contatti",
"href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Social Proof",
"href": "#social-proof"
}
];
{ name: "Home", href: "#hero" },
{ name: "Chi Sono", href: "#about" },
{ name: "Servizi", href: "#features" },
{ name: "Contatti", href: "#contact" },
{ name: "Metrics", href: "#metrics" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Social Proof", href: "#social-proof" }
];
return (
<StyleProvider buttonVariant="elastic" siteBackground="gridLines" heroBackground="horizonGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Leonardo Valori"
ctaButton={{
text: "Contattami",
href: "#contact",
}}
navItems={navItems} />
logo="Leonardo Valori"
logoImageSrc="http://img.b2bpic.net/free-vector/flat-business-card-template_23-2148121233.jpg"
ctaButton={{
text: "Contattami", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Leonardo Valori"
columns={[
{
title: "Navigazione",
items: [
brand="Leonardo Valori"
columns={[
{
label: "Home",
href: "#hero",
title: "Navigazione", items: [
{ label: "Home", href: "#hero" },
{ label: "Servizi", href: "#features" },
],
},
{
label: "Servizi",
href: "#features",
title: "Legale", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Termini e Condizioni", href: "#" },
],
},
],
},
{
title: "Legale",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Termini e Condizioni",
href: "#",
},
],
},
]}
copyright="© 2024 Leonardo Valori. Tutti i diritti riservati."
links={[
{
label: "LinkedIn",
href: "#",
},
{
label: "Instagram",
href: "#",
},
]}
/>
]}
copyright="© 2024 Leonardo Valori. Tutti i diritti riservati."
links={[
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);