diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b7bdf2d..831fce9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Planeta Brunch | Mejor Brunch en Valdivia - Delivery & Takeout", description: "Planeta Brunch: los mejores pancakes, avocado toast y waffles en Valdivia. Delivery y takeout de ingredientes frescos. Llama +56 9 4208 2013 o pide por WhatsApp.", keywords: "brunch Valdivia, desayuno delivery, avocado toast, pancakes, takeout, comida rápida, brunch para llevar, café Valdivia", metadataBase: new URL("https://planetabrunch.cl"), - alternates: { - canonical: "https://planetabrunch.cl"}, - openGraph: { - title: "Planeta Brunch | Best Brunch in Valdivia", description: "Fresh brunch delivery and takeout in Valdivia. Pancakes, avocado toast, waffles and more. Order now!", url: "https://planetabrunch.cl", siteName: "Planeta Brunch", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-food-snacks-made-from-sweet-potatoes_23-2149134044.jpg", alt: "Planeta Brunch featured dish"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Planeta Brunch - Best Brunch in Valdivia", description: "Fresh ingredients, fast delivery. Pancakes, avocado toast, waffles. Order by phone or WhatsApp!", images: ["http://img.b2bpic.net/free-photo/pancakes-arrangement-with-fruits_23-2148531570.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Planeta Brunch", description: "Los mejores brunch de Valdivia"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -