3 Commits

Author SHA1 Message Date
bad8ff190f Update src/app/page.tsx 2026-03-09 16:03:25 +00:00
83364306fc Update src/app/layout.tsx 2026-03-09 16:03:25 +00:00
d1319bdf0c Merge version_1 into main
Merge version_1 into main
2026-03-09 16:00:50 +00:00
2 changed files with 17 additions and 50 deletions

View File

@@ -1,63 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", variable: "--font-geist-sans", subsets: ["latin"],
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", variable: "--font-geist-mono", subsets: ["latin"],
subsets: ["latin"],
});
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "TextRiders - Luxury Rides When Others Fail | Union to Greenville", 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1425,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -156,6 +156,9 @@ export default function HomePage() {
buttons={[ buttons={[
{ {
text: "BOOK NOW", href: "/book-a-ride" text: "BOOK NOW", href: "/book-a-ride"
},
{
text: "TEXT NOW", href: "tel:+18640000000"
} }
]} ]}
/> />
@@ -260,4 +263,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }