diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f9def4b..7a3e8a9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,36 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { - title: "Los Compadres Barbershop | Premium Haircuts & Grooming", description: "Master barbers delivering precision haircuts, beard grooming, and traditional shaves in a welcoming community atmosphere for over 15 years.", keywords: "barbershop, haircuts, beard grooming, straight razor shave, men's grooming, barber", openGraph: { - title: "Los Compadres Barbershop", description: "Premium barbering services with master barbers. Precision cuts, beard grooming, and traditional shaves.", type: "website", siteName: "Los Compadres Barbershop", images: [ - { - url: "http://img.b2bpic.net/free-photo/male-hairdresser-combing-hair-senior-client_23-2148181882.jpg", alt: "Los Compadres Barbershop" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Los Compadres Barbershop", description: "Master barbers. Premium cuts. Timeless service.", images: ["http://img.b2bpic.net/free-photo/male-hairdresser-combing-hair-senior-client_23-2148181882.jpg"] - } -}; + title: "Mi Casa Restaurant - Spanish Dominican Vibe", description: "Experience authentic Spanish and Dominican cuisine at Mi Casa Restaurant. Authentic flavors, warm hospitality, and vibrant atmosphere."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +