diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c390a79..f3125de 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Made In America Store - Elma, NY | 100% American Products", description: "Family-owned retail store in Elma, NY specializing in 100% American-made products. 4.7-star rated. In-store pickup available. Call now for local service you can trust.", keywords: "American-made products, Elma NY retail store, local business, family-owned, American manufacturing, in-store pickup", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Made In America Store - 100% American-Made Products", description: "Supporting American manufacturers with quality products and local service in Elma, NY.", siteName: "Made In America Store", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/country-music-band-singing-outdoors_23-2149498433.jpg", alt: "Made In America Store Storefront"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Made In America Store - Elma, NY", description: "100% American-made products. Family-owned. Local service you can trust.", images: ["http://img.b2bpic.net/free-photo/country-music-band-singing-outdoors_23-2149498433.jpg"], - }, -}; + title: "Made In America Store", description: "Premium American-made products for your family. Locally owned and operated in Elma, NY."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}