diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 26e885f..717289e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Sam Street Food Truck | Fresh Street Food Daily", description: "Authentic street food delivered fresh daily. Premium burgers, tacos, and more. Find Sam Street Food Truck in your neighborhood.", keywords: "food truck, street food, burgers, tacos, fast food, local restaurant", metadataBase: new URL("https://samstreetfoodtruck.com"), - alternates: { - canonical: "https://samstreetfoodtruck.com"}, - openGraph: { - title: "Sam Street Food Truck", description: "Authentic street food made fresh every day. Find us at your favorite location.", url: "https://samstreetfoodtruck.com", siteName: "Sam Street Food Truck", images: [ - { - url: "http://img.b2bpic.net/free-photo/bearded-young-man-sitting-bench-outside-cafe-drinking-chocolate-drink-using-mobile-phone_23-2148176533.jpg", alt: "food truck street vendor modern"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Sam Street Food Truck", description: "Fresh street food made with quality ingredients and passion.", images: ["http://img.b2bpic.net/free-photo/bearded-young-man-sitting-bench-outside-cafe-drinking-chocolate-drink-using-mobile-phone_23-2148176533.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sam Street Food Truck", description: "Fresh meals ready in minutes, crafted daily from premium ingredients"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +