Update src/app/layout.tsx

This commit is contained in:
2026-03-03 16:12:19 +00:00
parent adedbc8f8d
commit 2f591d74ff

View File

@@ -1,57 +1,26 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Skid Steer Loader Rentals - ProTrack | Bilingual Equipment Rental", description: "Professional skid steer loader rentals with bilingual support. Daily, weekly, and monthly rental plans available. Fast delivery, expert support, and flexible terms.", keywords: "skid steer rental, equipment rental, loader rental, construction equipment, bilingual", metadataBase: new URL("https://protrackrentals.com"),
alternates: {
canonical: "https://protrackrentals.com"
},
openGraph: {
title: "ProTrack - Professional Equipment Rentals", description: "Rent reliable skid steer loaders and construction equipment. Bilingual service for English and Spanish speakers.", url: "https://protrackrentals.com", siteName: "ProTrack Rentals", type: "website", images: [{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARO0myy2Q0cEbmnux5fNOMbxJj/a-professional-skid-steer-loader-on-a-mo-1772553433968-e4af3058.png", alt: "Skid steer loader ready for rental"
}]
},
twitter: {
card: "summary_large_image", title: "Professional Skid Steer Loader Rentals", description: "Flexible equipment rental plans with bilingual support. Daily, weekly, monthly options available.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARO0myy2Q0cEbmnux5fNOMbxJj/a-professional-skid-steer-loader-on-a-mo-1772553433968-e4af3058.png"]
},
robots: {
index: true,
follow: true
}
};
title: "ProTrack Rentals | Skid Steer Loader Rentals | Alquileres de Cargadores", description: "Professional skid steer loader rentals for construction and landscaping projects. Bilingual service for English and Spanish speaking customers. Same-day delivery available.", keywords: "skid steer loader rental, equipment rental, construction rental, landscaping equipment, bilingual service"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1388,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}