4 Commits

Author SHA1 Message Date
93b1644fa0 Merge version_2 into main
Merge version_2 into main
2026-03-09 16:03:29 +00:00
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 { 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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1425,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

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