Merge version_1_1781526020941 into main
Merge version_1_1781526020941 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user