diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2f2815d..e036236 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,15 +1,11 @@
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({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- 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"};
+ 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,
@@ -18,9 +14,7 @@ export default function RootLayout({
}) {
return (
-
- {children}
-
+ {children}
@@ -42,15 +42,15 @@ export default function LandingPage() {
@@ -60,10 +60,10 @@ export default function LandingPage() {
@@ -141,19 +141,19 @@ export default function LandingPage() {
@@ -224,15 +224,15 @@ export default function LandingPage() {
columns={[
{
items: [
- { label: "Equipment | Equipo", href: "equipment" },
- { label: "Pricing | Precios", href: "pricing" },
- { label: "Why Us | Por Qué", href: "why-us" }
+ { label: "Equipment", href: "#equipment" },
+ { label: "Pricing", href: "#pricing" },
+ { label: "Why Us", href: "#why-us" }
]
},
{
items: [
- { label: "Contact | Contacto", href: "contact" },
- { label: "Phone | Teléfono", href: "tel:+15551234567" },
+ { label: "Contact", href: "#contact" },
+ { label: "Phone", href: "tel:+15551234567" },
{ label: "Email", href: "mailto:info@protrackrentals.com" }
]
},
@@ -240,14 +240,14 @@ export default function LandingPage() {
items: [
{ label: "Español", href: "#" },
{ label: "English", href: "#" },
- { label: "Bilingual Support | Soporte Bilingüe", href: "contact" }
+ { label: "Bilingual Support", href: "#contact" }
]
},
{
items: [
- { label: "Privacy Policy | Política de Privacidad", href: "#" },
- { label: "Terms of Service | Términos de Servicio", href: "#" },
- { label: "Rental Agreement | Acuerdo de Alquiler", href: "#" }
+ { label: "Privacy Policy", href: "#" },
+ { label: "Terms of Service", href: "#" },
+ { label: "Rental Agreement", href: "#" }
]
}
]}