|
|
|
|
@@ -1,57 +1,21 @@
|
|
|
|
|
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"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const figtree = Figtree({
|
|
|
|
|
variable: "--font-figtree", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ 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 - Professional Equipment Rental", description: "Professional skid steer loader and equipment rentals with same-day delivery. Flexible plans, no long-term contracts required."
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1383,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|