mirror of
https://github.com/vee1e/finova.git
synced 2026-09-01 10:18:34 +00:00
ples work
This commit is contained in:
parent
504d6ef1a5
commit
a7e4989220
2 changed files with 21 additions and 14 deletions
BIN
public/chat.png
Normal file
BIN
public/chat.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 MiB |
|
|
@ -1,6 +1,7 @@
|
|||
"use client";
|
||||
|
||||
import { Button } from "@/components/ui/button";
|
||||
import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
|
||||
export function HeroSection() {
|
||||
|
|
@ -10,22 +11,28 @@ export function HeroSection() {
|
|||
<div className="absolute inset-0 bg-gradient-to-b from-background via-card/10 to-card/20 opacity-70"></div>
|
||||
</div>
|
||||
<div className="container relative z-10">
|
||||
<div className="flex flex-col items-center justify-center text-center max-w-4xl mx-auto">
|
||||
<h1 className="text-5xl md:text-6xl font-bold tracking-tight pt-18 mb-8">
|
||||
<span className="text-primary">India's First</span> AI Travel Agent
|
||||
</h1>
|
||||
<p className="text-lg md:text-2xl text-muted-foreground mb-10 max-w-3xl">
|
||||
YatraGPT plans your end-to-end journeys across multiple transport modes.
|
||||
From autorickshaws to airlines, we stitch India's chaotic transport mesh into a seamless experience.
|
||||
</p>
|
||||
<Link href="#waitlist">
|
||||
<Button size="lg" className="bg-primary hover:bg-primary/90 text-primary-foreground px-14 py-9 text-xl">
|
||||
Join the Waitlist
|
||||
</Button>
|
||||
</Link>
|
||||
<p className="text-muted-foreground mt-6 text-lg">Currently in beta - 750+ users on waitlist</p>
|
||||
<div className="flex flex-col md:flex-row items-center justify-between gap-12">
|
||||
<div className="w-full md:w-1/2">
|
||||
<Image src="/chat.png" alt="Chat" width={300} height={300} className="h-[70vh] w-auto object-contain pt-10" />
|
||||
</div>
|
||||
<div className="w-full md:w-1/2 text-center md:text-left">
|
||||
<h1 className="text-5xl md:text-6xl font-bold tracking-tight mb-8">
|
||||
<span className="text-primary">India's First</span> AI Travel Agent
|
||||
</h1>
|
||||
<p className="text-lg md:text-2xl text-muted-foreground mb-10">
|
||||
YatraGPT plans your end-to-end journeys across multiple transport modes.
|
||||
From autorickshaws to airlines, we stitch India's chaotic transport mesh into a seamless experience.
|
||||
</p>
|
||||
<Link href="#waitlist">
|
||||
<Button size="lg" className="bg-primary hover:bg-primary/90 text-primary-foreground px-14 py-9 text-xl">
|
||||
Join the Waitlist
|
||||
</Button>
|
||||
</Link>
|
||||
<p className="text-muted-foreground mt-6 text-lg">Currently in beta - 750+ users on waitlist</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue