diff --git a/src/app/layout.tsx b/src/app/layout.tsx index beeb34d..006c646 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "The Village Printer | Local Printing in Saukville, WI", - description: "Professional local printing services in Saukville, Wisconsin. Business cards, flyers, banners, and custom printing with fair pricing and fast turnaround.", - keywords: "print shop Saukville WI, local printing, business cards, flyers, signs, custom printing", - metadataBase: new URL("https://www.villageprinter.com"), - alternates: { - canonical: "https://www.villageprinter.com", - }, - openGraph: { - title: "The Village Printer - Local Printing in Saukville, WI", - description: "Professional printing services for businesses and individuals. Fair pricing, quality results, fast turnaround.", - url: "https://www.villageprinter.com", - siteName: "The Village Printer", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/young-female-client-store-is-trying-different-frames-her-small-canvas-is-talking-with-attractive-male-employee_662251-239.jpg", - alt: "The Village Printer shop", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "The Village Printer - Local Printing in Saukville", - description: "Professional printing services. Business cards, flyers, banners, and more. Fair prices, quality guaranteed.", - images: ["http://img.b2bpic.net/free-photo/young-female-client-store-is-trying-different-frames-her-small-canvas-is-talking-with-attractive-male-employee_662251-239.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Village Printer", description: "Professional printing services in Saukville, Wisconsin"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}