From e82d68de00b1f336e4e07ea4cbfc45caa796a360 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 21:15:40 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++------------------------------------ 1 file changed, 11 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c39fb44..349205b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +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: "Super Liquor Paihia | Local Bottle Shop Bay of Islands", description: "Premium liquor store in Paihia with beer, wine, spirits, and ready-to-drink beverages. Convenient location, fast service, great prices. Call 09 945 8333.", keywords: "liquor store Paihia, bottle shop Paihia, alcohol Bay of Islands, beer wine spirits Paihia, liquor near me", metadataBase: new URL("https://www.superliquorpaihia.co.nz"), - alternates: { - canonical: "https://www.superliquorpaihia.co.nz"}, - openGraph: { - title: "Super Liquor Paihia | Your Local Bottle Shop", description: "Quality alcohol, friendly service, convenient location. Cold drinks ready to go. Open daily 10 AM - 9 PM.", url: "https://www.superliquorpaihia.co.nz", siteName: "Super Liquor Paihia", images: [ - { - url: "http://img.b2bpic.net/free-photo/confident-bartender-standing-bar-counter_107420-94857.jpg", alt: "Super Liquor Paihia storefront"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Super Liquor Paihia | Local Bottle Shop", description: "Great prices. Friendly service. Cold drinks ready. Visit us in Paihia!", images: ["http://img.b2bpic.net/free-photo/confident-bartender-standing-bar-counter_107420-94857.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Super Liquor Paihia | Local Bottle Shop Bay of Islands", description: "Great prices. Friendly service. Cold drinks ready to go. Your local bottle shop in Paihia, Bay of Islands. Open daily 10 AM - 9 PM."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +