import { useState } from "react"; import { ChevronDown } from "lucide-react"; export default function Scenic20Landing() { const [selectedTown, setSelectedTown] = useState(""); const towns = [ { name: "Tahoe", url: "https://tahoe.scenic20.com" }, { name: "Lucerne", url: "https://lucerne.scenic20.com" }, { name: "Fort Bragg", url: "https://fortbragg.scenic20.com" }, ]; const handleTownChange = (e) => { const selected = towns.find(t => t.name === e.target.value); if (selected) { window.location.href = selected.url; } }; return (

Scenic20.com

Explore the Scenic Route 20

Discover the beauty of historic Route 20, stretching from the crystal waters of Tahoe to the rugged Pacific coastline of Fort Bragg. Travel through Lake County and past the breathtaking Berryessa Snow Mountain National Monument.

Lake View Mountain View Forest View Coastal View
); }