diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 40352f9..ba6f2da 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); export const metadata: Metadata = { - title: "SNS Alterations | Expert Tailoring & Wedding Dress Alterations DC", description: "Professional tailor in Washington, DC. Expert wedding dress alterations, suit tailoring, and garment hemming. 4.9★ rated. Free consultations. Call (202) 977-8488.", keywords: "tailor Washington DC, alterations DC, wedding dress alterations, suit tailoring, clothing alterations near me", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "SNS Alterations | Expert Tailoring DC", description: "Trusted local tailor for wedding dresses, suits, and custom alterations. 4.9★ rated. Located at 1512 U St NW, Washington, DC.", url: "https://snsalterations.com", siteName: "SNS Alterations", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg", alt: "professional tailor shop interior bright welcoming"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SNS Alterations | Expert Tailoring DC", description: "Trusted local tailor for wedding dresses, suits, and custom alterations. 4.9★ rated.", images: ["http://img.b2bpic.net/free-photo/woman-making-jacket_23-2148898070.jpg"], - }, -}; + title: "SNS Alterations - Expert Tailoring in Washington, DC", description: "Professional tailoring and alterations in Washington, DC. Specializing in wedding dress alterations, suit tailoring, and custom garment work. 4.9★ rated."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -