diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4769033..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "DriveDish | Innovative Automotive Dining Solutions", - description: "Discover DriveDish foldable car plates and spill-resistant bowls. Innovative automotive dining solutions for road trips and on-the-go eating. Shop now.", - keywords: "car dining, foldable plates, spill-resistant bowls, automotive accessories, road trip solutions, Colorado startup", - metadataBase: new URL("https://drivedish.com"), - alternates: { - canonical: "https://drivedish.com", - }, - openGraph: { - title: "DriveDish | Transform Your Road Dining Experience", - description: "Innovative foldable silicone plates and spill-resistant bowls for comfortable, clean eating in your vehicle.", - url: "https://drivedish.com", - siteName: "DriveDish", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/view-travel-items-inside-car-ready-trip_23-2151078288.jpg", - alt: "DriveDish automotive dining solutions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "DriveDish | Automotive Dining Innovation", - description: "Premium foldable plates and spill-resistant bowls for eating in your car. Shop innovative dining solutions.", - images: ["http://img.b2bpic.net/free-photo/view-travel-items-inside-car-ready-trip_23-2151078288.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -