24 lines
1022 B
TypeScript
Raw Normal View History

2025-02-13 17:28:49 +01:00
import { Button } from "@/components/ui/button"
export default function Hero() {
return (
2025-02-13 23:04:40 +01:00
<div className="relative pt-32 pb-20 sm:pt-40 sm:pb-24">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h1 className="text-4xl sm:text-6xl lg:text-7xl font-bold tracking-tight mb-8">
Everything App
<br />
<span className="text-gray-400">for your teams</span>
</h1>
<p className="max-w-2xl mx-auto text-lg sm:text-xl text-gray-400 mb-10">
Huly, an open-source platform, serves as an all-in-one replacement of Linear, Jira, Slack, and Notion.
</p>
<Button className="relative group px-8 py-6 text-lg bg-gradient-to-r from-primary to-accent hover:opacity-90">
<span className="relative z-10">Try it free</span>
<div className="absolute inset-0 bg-white/20 blur-lg group-hover:blur-xl transition-all duration-300 opacity-0 group-hover:opacity-100" />
2025-02-13 17:28:49 +01:00
</Button>
</div>
2025-02-13 23:04:40 +01:00
</div>
2025-02-13 17:28:49 +01:00
)
}