import Image from 'next/image'; import { Inter } from 'next/font/google'; const inter = Inter({ subsets: ['latin'], display: 'swap', }); const currentPrice = "438.07"; const priceChange = "-11.65 (-2.59%)"; const catalysts = [ { title: "Robotaxi Network Expansion", description: "Broader rollout to new cities, paid rides for owners, unsupervised FSD scaling. Trillion-dollar opportunity accelerating.", date: "Throughout 2026", }, { title: "Optimus Production Ramp", description: "Higher-volume factory production starts. In-house deployment + first external sales targeted late 2026/2027.", date: "2026–2027", }, { title: "Cybercab Volume Production", description: "Dedicated robotaxi vehicle (Cybercab) hits the roads. Affordable next-gen platform unlocking mass autonomy.", date: "2026", }, { title: "Energy Storage Supercycle", description: "Megapack deployments continue explosive growth. Margins beating automotive, becoming major profit driver.", date: "Ongoing 2026", }, { title: "Tesla Semi High-Volume Ramp", description: "Electric semi-trucks scale production. New fleets adopting, logistics revolution underway.", date: "2026", }, ]; export default function Home() { return (
{/* Hero Section */}
Tesla Optimus & Cybercab – Autonomy and Robotics Revolution

TeslaBullFeed

Daily Dose of TSLA Bull Catalysts

🚀 No FUD, Only Moon 🌕

{/* Live Price Section */}

TSLA Live Price

${currentPrice}

{priceChange} (as of Jan 5, 2026)

{/* Bull News Feed */}

Bull News Feed – 2026 Catalysts

{catalysts.map((item, i) => (

{item.title}

{item.description}

{item.date}

))}
); }