Update src/app/layout.tsx
This commit is contained in:
@@ -1,46 +1,44 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { DM_Sans } 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 poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luxury Limousine Rental | Premium Ground Transportation | Luxe Rides", description: "Premium luxury limousine rental service for executives, weddings, and events. Book professional drivers, transparent pricing, and premium vehicles. 24/7 availability.", keywords: "luxury limousine rental, premium car service, executive transportation, wedding limo, airport transfer, ground transportation", metadataBase: new URL("https://luxerides.com"),
|
||||
alternates: {
|
||||
canonical: "https://luxerides.com"},
|
||||
canonical: "https://luxerides.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Luxury Limousine Rental | Premium Transportation | Luxe Rides", description: "Experience premium ground transportation with professional drivers and luxury vehicles. Book now for executive travel, weddings, and special occasions.", siteName: "Luxe Rides", type: "website", url: "https://luxerides.com", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/photo-from-inside-vehicle-female-customer-modern-stylish-bearded-businessman-automobile-saloon_146671-16063.jpg", alt: "Luxury limousine service"},
|
||||
],
|
||||
url: "http://img.b2bpic.net/free-photo/photo-from-inside-vehicle-female-customer-modern-stylish-bearded-businessman-automobile-saloon_146671-16063.jpg", alt: "Luxury limousine service"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Premium Luxury Limousine Rental | Luxe Rides", description: "Professional ground transportation with premium vehicles and expert drivers available 24/7.", images: [
|
||||
"http://img.b2bpic.net/free-photo/photo-from-inside-vehicle-female-customer-modern-stylish-bearded-businessman-automobile-saloon_146671-16063.jpg"],
|
||||
"http://img.b2bpic.net/free-photo/photo-from-inside-vehicle-female-customer-modern-stylish-bearded-businessman-automobile-saloon_146671-16063.jpg"
|
||||
]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
children
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
@@ -48,7 +46,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
className={`${poppins.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user