diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3d59e46..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Clique Club Restaurant | Best Dining in Clarksburg, WV", description: "Clique Club - Family-owned restaurant in Clarksburg, WV. 4.4★ rating, famous ribeye sandwiches, fresh pasta & steak salads. Dine-in & takeout. Call (304) 622-9411.", keywords: "restaurant Clarksburg WV, best lunch Clarksburg, ribeye sandwich, steak salad, lounge restaurant, family dining", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Clique Club Restaurant | Clarksburg, WV", description: "Discover Clarksburg's hidden gem - Clique Club. Family-owned lounge restaurant with amazing food and warm service. 4.4★ (255 reviews).", type: "website", siteName: "Clique Club Restaurant", images: [ - { - url: "http://img.b2bpic.net/free-photo/tables-chairs-arranged-empty-coffee-shop_107420-96463.jpg", alt: "Clique Club dining room"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Clique Club - Clarksburg's Favorite Restaurant", description: "Family-owned lounge serving hearty meals & unforgettable ribeye sandwiches. Call (304) 622-9411", images: ["http://img.b2bpic.net/free-photo/tables-chairs-arranged-empty-coffee-shop_107420-96463.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -