'use client';
import Link from 'next/link';
import { ArrowRight, Telescope } from 'lucide-react';
import { motion } from 'framer-motion';
import DownloadButton, { BrowserFallbackList } from './home/DownloadButton';
/**
* Homepage hero: tagline + description + two side-by-side CTAs, plus the
* download CTA's browser-detected fallback list below.
*
* Used in place of the bare after we swapped the homepage's
* full-hero Header for the compact nav card. The CTA row anchors users on
* the two product entry points: the explorer (a website experience) and
* the extension (download).
*/
export default function HomeHero() {
return (
Tour the Atmosphere
Switch clients, share universal links, browse any PDS.
{/* CTA row — align to the top so the Explore link doesn't stretch
to match the Download column's full height (button + fallback
line). Each button keeps its natural size. */}
Explore the Atmosphere
{/* showFallback omitted — the fallback list lives below the CTA
row so it can center relative to both buttons. */}
{/* Browser-detected "Also for X" line, centered under the row. */}
);
}