diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2b61cba..2f2815d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-