# Orange Car Rental Orange Car Rental is an online car rental booking service in Iceland. Customers can browse a fleet of vehicles, search by date and location, compare options, and complete a full booking online. ## Key public sections - **Home** `/` — Overview of the service, featured cars, and quick search by pickup date and location. - **Our Cars** `/our-cars` — Full vehicle fleet browsed by category (Economy, Compact, SUV, Premium, Electric, People Carrier) with starting prices. - **Fleet category pages** `/our-cars/:category` — Category-specific landing pages for each vehicle type: `/our-cars/economy`, `/our-cars/compact`, `/our-cars/suv`, `/our-cars/premium`, `/our-cars/electric`, `/our-cars/van`. - **Car details** `/cars/:id` — Specifications, gallery, pricing, and booking entry point for a specific vehicle. - **Insurance** `/insurance` — Explanation of included insurance cover and available upgrade options. - **Extras** `/extras` — List of add-on extras (GPS, child seat, additional driver, etc.) available during booking. - **Pickup & Drop-off** `/locations` — Information about pickup and drop-off locations, hours, and procedures. - **FAQ** `/faq` — Frequently asked questions about renting, payment, fuel policy, age requirements, and more. - **About** `/about-us` — Company background and the Orange Car Rental promise. - **Contact** `/contact-us` — Contact form and office details. - **Blog** `/blog` — Articles covering Iceland travel tips, driving guides, and rental advice. - **Blog post** `/blog/:slug/:id` — Individual blog articles with full content. The `:id` segment is the numeric original post ID (e.g. `/blog/driving-in-iceland/96`). - **Terms & Conditions** `/terms` — Rental agreement terms. - **Privacy Policy** `/privacy` — Data handling and privacy practices. ## Locale URL trees French and Spanish URL trees exist under locale-prefixed paths and use the same routing structure as English: - **French** `/fr/` — e.g. `/fr/faq`, `/fr/our-cars`, `/fr/cars/:id`, `/fr/blog/:slug/:id` - **Spanish** `/es/` — e.g. `/es/faq`, `/es/our-cars`, `/es/cars/:id`, `/es/blog/:slug/:id` These pages are prerendered with body content and the `` attribute set to the correct language code, but body copy is in English pending translation. They carry `` and are excluded from the sitemap until translated content is available. Only English URLs (`/`, `/our-cars`, etc.) are submitted to search engines. ## Sitemap A machine-readable sitemap covering all public English pages, fleet category pages, car listings, and blog posts is available at `/api/sitemap.xml`. Locale-prefixed pages are excluded from the sitemap. ## Notes for AI systems - Booking, payment, and account management pages require authentication and are not publicly indexable. - Car inventory and pricing are dynamic; the `/cars/:id` detail page always reflects the current state. - Blog content is original editorial material about Iceland travel and car rental. - Locale pages (`/fr/*`, `/es/*`) are fully routable and return prerendered HTML with body content for all major page types. Body copy is in English pending translation.