hero.tsx 380 B

12345678910
  1. export function Hero() {
  2. return (
  3. <section className="flex flex-col items-center px-4 pt-16 pb-8 text-center">
  4. <h1 className="text-5xl font-bold tracking-tight sm:text-6xl md:text-7xl">MovieDice</h1>
  5. <p className="mt-4 max-w-md text-lg text-foreground/60 sm:text-xl">
  6. One shared list. One button to decide. No arguments.
  7. </p>
  8. </section>
  9. );
  10. }