Files
make-comics/components/landing/hero-section.tsx
T
2025-12-22 20:20:39 +01:00

26 lines
1.1 KiB
TypeScript

"use client"
export function LandingHero() {
return (
<header className="relative py-8 sm:py-12 md:py-16 lg:py-0">
<div className="relative z-10">
<div className="lg:text-left text-center">
<div className="inline-flex items-center gap-1 px-2.5 py-1 rounded-full border border-border glass-panel mb-4 sm:mb-6 w-fit">
<span className="text-[10px] font-medium text-muted-foreground tracking-[-0.015em]">
Powered by Together AI
</span>
</div>
<h1 className="text-5xl sm:text-6xl md:text-7xl lg:text-8xl text-foreground uppercase mb-4 sm:mb-5 tracking-wide font-heading font-semibold leading-tight sm:leading-[5.2rem]">
Create stunning <span className="text-indigo font-semibold">comics</span>
</h1>
<p className="text-muted-foreground leading-relaxed max-w-md mx-auto lg:mx-0 tracking-[-0.02em] px-4 sm:px-0 text-sm">
Describe your scene, choose a style, and let AI render professional comic panels instantly.
</p>
</div>
</div>
</header>
)
}