From 2bd39fb1874b8b00a85a0ce970ce3a56b3815bc4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 19:52:47 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1409 +------------------------------------------- 1 file changed, 6 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d2005f0..09bf9e4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "The Foundry Salon - New Braunfels Hair Salon", description: "Expert hair salon in New Braunfels, TX. 4.9★ rated. Haircuts, color, highlights from master stylists. Book online or call (830) 387-4341.", keywords: "hair salon New Braunfels, haircuts, hair color, highlights, balayage, salon near me, barber, stylist", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "The Foundry Salon - New Braunfels", description: "Premium hair salon with 1,200+ five-star reviews. Expert stylists, welcoming atmosphere, free beverages.", siteName: "The Foundry Salon", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149230930.jpg", alt: "The Foundry Salon Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Foundry Salon - New Braunfels", description: "4.9★ rated hair salon. Expert cuts, color & highlights. Open until 8 PM.", images: ["http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149230930.jpg"], - }, -}; + title: "The Foundry Salon", description: "New Braunfels' Most Trusted Hair Salon"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -