Merge version_1_1781379690550 into main #1

Merged
bender merged 2 commits from version_1_1781379690550 into main 2026-06-13 19:42:29 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Sobre",
"href": "#about"
"name": "Sobre", "href": "#about"
},
{
"name": "Bolos",
"href": "#products"
"name": "Bolos", "href": "#products"
},
{
"name": "Contato",
"href": "#contact"
"name": "Contato", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Delícias Confeitaria"
logoImageSrc="http://img.b2bpic.net/free-photo/love-bakery_23-2147989464.jpg"
ctaButton={{
text: "Encomendar",
href: "#contact",
}}
text: "Encomendar", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,42 +48,27 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Confeitaria",
items: [
title: "Confeitaria", items: [
{
label: "Sobre",
href: "#about",
},
label: "Sobre", href: "#about"},
{
label: "Cardápio",
href: "#products",
},
label: "Cardápio", href: "#products"},
],
},
{
title: "Atendimento",
items: [
title: "Atendimento", items: [
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
{
label: "Contato",
href: "#contact",
},
label: "Contato", href: "#contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Termos",
href: "#",
},
label: "Termos", href: "#"},
{
label: "Privacidade",
href: "#",
},
label: "Privacidade", href: "#"},
],
},
]}