diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9ea9b0d..3552b5f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "La Casita Refresqueria | Premium Hand-Crafted Beverages", description: "Discover authentic, hand-crafted refreshments at La Casita Refresqueria. Premium juices, smoothies, and traditional aguas frescas made with the finest ingredients.", keywords: "refreshment, beverages, juices, smoothies, aguas frescas, local business, traditional drinks", openGraph: { - title: "La Casita Refresqueria | Premium Beverages", description: "Authentic, hand-crafted refreshments for every occasion", siteName: "La Casita Refresqueria", type: "website"}, - twitter: { - card: "summary_large_image", title: "La Casita Refresqueria", description: "Premium Hand-Crafted Beverages"}, - robots: { - index: true, - follow: true, - }, -}; + title: "La Casita Refresqueria", description: "Authentic, hand-crafted beverages that bring joy to every sip."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +