diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ea5776..b2797b2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,63 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "TextRiders - Luxury Rides When Others Fail | Union to Greenville", - description: "Premium ride service with professional drivers and text-based booking. Reliable transportation between Union, Greenville, Spartanburg. When Uber fails, TextRiders delivers.", - keywords: "Union taxi, taxi Union SC, Greenville ride service, long distance ride Union SC, airport transportation, professional drivers, reliable rides", - openGraph: { - title: "TextRiders - Luxury Rides When Others Fail", - description: "Premium transportation with professional drivers. Text to book your ride from Union to Greenville and beyond.", - url: "https://textriders.com", - siteName: "TextRiders", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "TextRiders - Premium Luxury Rides", - description: "Reliable transportation when other services fail. Professional drivers. Simple text booking.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TextRiders - Luxury Rides. Reliable Drivers.", description: "Premium transportation service between Union, Greenville, and surrounding areas. When Uber can't find a driver, TextRiders delivers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +