Update src/app/layout.tsx

This commit is contained in:
2026-03-05 03:51:13 +00:00
parent ff4c3a6a0c
commit b0c8cd8560

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}