diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4fd9b5e..5023fe3 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const nunito = Nunito({
- variable: "--font-nunito", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Fried Chicken - Pollo Frito Crujiente en Vecindario", description: "Restaurante de comida rápida en Vecindario, Gran Canaria. Pollo frito crujiente, hamburguesas, wraps y bubble tea a precios accesibles.", keywords: "pollo frito, restaurante, comida rápida, Vecindario, Gran Canaria, hamburguesa, bubble tea", openGraph: {
- title: "Fried Chicken - Pollo Frito Delicioso", description: "Disfruta del mejor pollo frito crujiente en Vecindario. Combos familiares y bubble tea refrescante.", siteName: "Fried Chicken", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Fried Chicken - Pollo Frito en Vecindario", description: "Restaurante de comida rápida con pollo frito crujiente y bubble tea"},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Restaurante Chino", description: "Auténtica cocina china en Gran Canaria"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-