diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c38d197..2f2815d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,15 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; +import "./styles/variables.css"; +import "./styles/base.css"; -const inter = Inter({ subsets: ["latin"] }); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - 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." -}; + 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, @@ -15,7 +18,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +