Update src/components/Layout.tsx

This commit is contained in:
2026-06-13 16:15:58 +00:00
parent 06f3c0c8a9
commit c852cd93c2

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Início",
"href": "#hero"
"name": "Início", "href": "#hero"
},
{
"name": "Sobre",
"href": "#sobre"
"name": "Sobre", "href": "#sobre"
},
{
"name": "Cardápio",
"href": "#cardapio"
"name": "Cardápio", "href": "#cardapio"
},
{
"name": "Avaliações",
"href": "#avaliacoes"
"name": "Avaliações", "href": "#avaliacoes"
},
{
"name": "Dif",
"href": "#dif"
"name": "Dif", "href": "#dif"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Contato",
"href": "#contato"
"name": "Contato", "href": "#contato"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarFloating
logo="Go Coffee"
ctaButton={{
text: "Peça Agora",
href: "https://wa.me/5541995109101",
}}
text: "Peça Agora", href: "https://wa.me/5541995109101"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,50 +48,36 @@ export default function Layout() {
brand="GO COFFEE MATINHOS"
columns={[
{
title: "Endereço",
items: [
title: "Endereço", items: [
{
label: "Rua Prefeito Dr. Roque Vernalha, 115",
href: "#",
},
label: "Rua Prefeito Dr. Roque Vernalha, 115", href: "#"},
{
label: "Centro Matinhos/PR",
href: "#",
},
label: "Centro Matinhos/PR", href: "#"},
],
},
{
title: "Social",
items: [
title: "Social", items: [
{
label: "Instagram",
href: "https://instagram.com",
},
label: "Instagram", href: "https://instagram.com"},
{
label: "Google Avaliações",
href: "#",
},
label: "Google Avaliações", href: "#"},
],
},
{
title: "Contato",
items: [
title: "Contato", items: [
{
label: "(41) 99510-9101",
href: "tel:+5541995109101",
},
label: "(41) 99510-9101", href: "tel:+5541995109101"},
{
label: "WhatsApp",
href: "https://wa.me/5541995109101",
},
label: "WhatsApp", href: "https://wa.me/5541995109101"},
],
},
]}
copyright="© 2024 Go Coffee Matinhos. Todos os direitos reservados."
imageSrc="http://img.b2bpic.net/free-photo/iced-chocolate_1339-4412.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/iced-chocolate_1339-4412.jpg"
links={[
{ label: "Termos de Uso", href: "#" },
{ label: "Política de Privacidade", href: "#" }
{
label: "Privacidade", href: "#"
}
]}
/>
</SectionErrorBoundary>