From 273712912efe13bb593928b37a2525ceb67f312c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:10:28 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c3409b6..a1ffff0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Laguna Creek Town Center | Shopping & Dining in Elk Grove, CA", description: "Your neighborhood destination for shopping, dining, and everyday essentials. Discover diverse retailers, restaurants, and services at Laguna Creek Town Center in Elk Grove.", keywords: "shopping center, retail center, Elk Grove, California, stores, dining, restaurants, convenient parking", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Laguna Creek Town Center", description: "Modern retail destination with diverse shops, restaurants, and services in Elk Grove, California.", type: "website", siteName: "Laguna Creek Town Center", images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-couple-with-dog_1157-14769.jpg", alt: "Laguna Creek Town Center shopping center"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Laguna Creek Town Center - Elk Grove", description: "Your local shopping destination with quality retailers, dining, and services.", images: ["http://img.b2bpic.net/free-photo/happy-couple-with-dog_1157-14769.jpg"], - }, -}; + title: "Laguna Creek Town Center", description: "Your neighborhood destination for shopping, dining, and everyday essentials."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +