diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fbae4bb..db4e8e4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mo's Fried Chicken | McLean, VA", description: "Fresh, crispy fried chicken in McLean, VA. Order online on DoorDash or call (703) 356-9090. 4.5★ rating. Open Wed-Sun 11am-9pm.", keywords: "fried chicken McLean VA, chicken tenders, best fried chicken near me, catering McLean", metadataBase: new URL("https://mofriedchicken.com"), - alternates: { - canonical: "https://mofriedchicken.com"}, - openGraph: { - title: "Mo's Fried Chicken | McLean, VA", description: "Fresh, crispy fried chicken. Order online or call (703) 356-9090.", url: "https://mofriedchicken.com", siteName: "Mo's Fried Chicken", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-inside-plate-light-background-food-horizontal-sandwich-meal-burger-color-meat_140725-156944.jpg", alt: "Fresh crispy fried chicken"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Mo's Fried Chicken | McLean, VA", description: "Fresh, crispy fried chicken. Order online or call (703) 356-9090.", images: [ - "http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-inside-plate-light-background-food-horizontal-sandwich-meal-burger-color-meat_140725-156944.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mo's Fried Chicken - McLean's Favorite", description: "Fresh, crispy fried chicken made with signature sauces. Located in McLean, Virginia."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}