From fc95d8fc44eadf201000200d4a7e2c583f60107c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:07:35 +0000 Subject: [PATCH 1/6] Update src/app/contacto/page.tsx --- src/app/contacto/page.tsx | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/app/contacto/page.tsx b/src/app/contacto/page.tsx index 26efb58..112188d 100644 --- a/src/app/contacto/page.tsx +++ b/src/app/contacto/page.tsx @@ -14,7 +14,7 @@ export default function ContactPage() { { name: "Inicio", id: "/" }, { name: "Historia", id: "/nuestra-historia" }, { name: "Menú", id: "/menu" }, - { name: "Ubicación", id: "/contacto" }, + { name: "Ubicación", id: "/ubicacion" }, { name: "Contacto", id: "/contacto" }, ]; @@ -47,7 +47,8 @@ export default function ContactPage() { navItems={navItems} brandName="Sabor" button={{ - text: "Reservar Mesa", onClick: () => window.location.href = "/contacto", href: "/contacto"}} + text: "Reservar Mesa", onClick: () => window.location.href = "/contacto", href: "/contacto" + }} /> @@ -90,7 +91,8 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 644e9b73faa3ca117e0499028cb54762689a7bc2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:07:36 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 61 ++++++++-------------------------------------- 1 file changed, 10 insertions(+), 51 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 063a505..4a107a8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,63 +1,23 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Sabor - Restaurante Moderno Diseño Bauhaus", - description: "Sabor es un restaurante contemporáneo que combina diseño Bauhaus con gastronomía local. Ingredientes de temporada, experiencia memorable, reservas online.", - keywords: "restaurante moderno, diseño Bauhaus, gastronomía local, ingredientes frescos, reservas", - metadataBase: new URL("https://sabor-restaurante.local"), - alternates: { - canonical: "https://sabor-restaurante.local", - }, - openGraph: { - title: "Sabor - Restaurante Local Contemporáneo", - description: "Donde el diseño se encuentra con la gastronomía. Menú de temporada con ingredientes locales.", - type: "website", - siteName: "Sabor", - url: "https://sabor-restaurante.local", - images: [ - { - url: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg", - alt: "Interior del restaurante Sabor", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Sabor - Restaurante Moderno", - description: "Diseño Bauhaus + Gastronomía Local = Experiencia Memorable", - images: [ - "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sabor - Restaurante Local Contemporáneo", description: "Donde el diseño se encuentra con la gastronomía. Una experiencia culinaria moderna con diseño Bauhaus e ingredientes locales de temporada."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}