import React, { useState } from “react”; import { motion } from “framer-motion”; import { Phone, MessageCircle, MapPin, Plane, Clock, Car, CreditCard, Star, Menu, X, Navigation, CalendarDays, Users, BriefcaseBusiness } from “lucide-react”; export default function KirkcaldyTaxisLuxuryApp() { const [menuOpen, setMenuOpen] = useState(false); const [tripType, setTripType] = useState(“Local Taxi”); const gold = “#d6a84f”; const services = [ { icon: Car, title: “Local Taxis”, text: “Fast local taxi service across Kirkcaldy and Fife.” }, { icon: Plane, title: “Airport Transfers”, text: “Reliable Edinburgh Airport pick-ups and drop-offs.” }, { icon: Clock, title: “24/7 Service”, text: “Available day and night for pre-booked journeys.” }, { icon: CreditCard, title: “Fixed Fares”, text: “Clear prices agreed before your journey.” }, ]; return (
Kirkcaldy Taxis
Black Gold Luxury Travel
{menuOpen && ( {[‘Book Now’, ‘Airport Transfers’, ‘Fixed Fares’, ‘Contact’].map((item) => (
{item}
))}
)}
Premium Taxi Service

24/7 Local Taxis
Edinburgh Airport Transfers
Fixed Prices

Book a professional taxi in Kirkcaldy with clear fixed fares, comfortable vehicles, and reliable airport service.

Book Your Journey

{[‘Local Taxi’, ‘Airport Transfer’].map((type) => ( ))}
{services.map(({ icon: Icon, title, text }) => (

{title}

{text}

))}

Why Choose Us?

🚖 Professional local taxi service

✈️ Edinburgh Airport transfer specialists

⏳ Reliable pre-booked journeys

💳 Cash, card and bank transfer options

); }