"use client" import { useState } from "react" import { Tabs, TabsList, TabsTrigger, TabsContent } from "@/components/ui/tabs" import { Button } from "@/components/ui/button" import { Info } from "lucide-react" const quarterlyData = [ { quarter: "Q3 2025", status: "Upcoming", change: null, color: "text-muted-foreground" }, { quarter: "Q2 2025", status: "-30.77%", change: -30.77, color: "text-red-400" }, { quarter: "Q1 2025", status: "-65.91%", change: -65.91, color: "text-red-400" }, { quarter: "Q4 2024", status: "-12%", change: -12, color: "text-red-400" }, { quarter: "Q3 2024", status: "+6.9%", change: 6.9, color: "text-green-400" }, { quarter: "Q2 2024", status: "-32.26%", change: -32.26, color: "text-red-400" }, { quarter: "Q1 2024", status: "", change: null, color: "text-muted-foreground" }, ] const analysisPoints = [ "Tesla successfully launched its robo-taxi service with paying customers in Austin, plans hyper-exponential expansion to additional US cities pending regulatory approval, and targets covering half the US population by year-end; expected material financial impact by end of next year, with long-term robotaxi cost per mile potentially as low as $0.25-$0.30 for purpose-built vehicles.", "Adoption of Full Self-Driving (FSD) increased 25% since v12 launch and with new lower subscription pricing; Tesla reports vehicles on FSD are 10x safer than without, and further expansion of FSD—including unsupervised personal use—expected in certain geographies by year-end.", "Lower-cost Tesla vehicle production began in H1 2025; ramping will be slower than initially expected due to focus on maximizing deliveries before US EV tax credits expire and the additional complexity of new models, with broader availability anticipated in Q4.", "Tesla's Optimus humanoid robot v3 prototype will begin production at the start of next year, with scale targeted at 100,000 robots per month within five years; Optimus is anticipated to be Tesla's biggest product ever, with initial revenues expected to be immaterial until production ramps.", "Near-term challenges include loss of US EV aid storage tax credits and increased tariffs, affecting both revenue and costs; CapEx for 2025 is expected to exceed $9 billion, driven by investment in AI, manufacturing, and energy storage—with record Powerwall deployments and strong MegaPack demand despite policy/tariff headwinds.", ] export function Earnings() { const [activeSubTab, setActiveSubTab] = useState("analysis") return (
{point}