Merge version_1_1781527915888 into main #1

Merged
bender merged 2 commits from version_1_1781527915888 into main 2026-06-15 12:53:14 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Sobre",
"href": "#about"
"name": "Sobre", "href": "#about"
},
{
"name": "Serviços",
"href": "#services"
"name": "Serviços", "href": "#services"
},
{
"name": "Preços",
"href": "#pricing"
"name": "Preços", "href": "#pricing"
},
{
"name": "Contactos",
"href": "#contact"
"name": "Contactos", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,60 +35,46 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Premiumlab"
ctaButton={{
text: "Agendar Consulta",
href: "#contact",
}}
navItems={navItems} />
logo="Premiumlab"
logoImageSrc="http://img.b2bpic.net/free-photo/top-view-metallic-straws-black-background_23-2148289740.jpg"
ctaButton={{
text: "Agendar Consulta", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Premiumlab"
columns={[
{
title: "Serviços",
items: [
brand="Premiumlab"
columns={[
{
label: "Implantes",
href: "#",
title: "Serviços", items: [
{
label: "Implantes", href: "#"},
{
label: "Próteses", href: "#"},
],
},
{
label: "Próteses",
href: "#",
title: "Contactos", items: [
{
label: "Lisboa, Portugal", href: "#"},
{
label: "geral@premiumlab.pt", href: "mailto:geral@premiumlab.pt"},
],
},
],
},
{
title: "Contactos",
items: [
]}
copyright="© 2024 Premiumlab. Todos os direitos reservados."
links={[
{
label: "Lisboa, Portugal",
href: "#",
},
label: "Privacidade", href: "#"},
{
label: "geral@premiumlab.pt",
href: "mailto:geral@premiumlab.pt",
},
],
},
]}
copyright="© 2024 Premiumlab. Todos os direitos reservados."
links={[
{
label: "Privacidade",
href: "#",
},
{
label: "Termos",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/top-view-metallic-straws-black-background_23-2148289740.jpg"
/>
label: "Termos", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-photo/top-view-metallic-straws-black-background_23-2148289740.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);