-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhero.tsx
More file actions
36 lines (32 loc) · 1.23 KB
/
Copy pathhero.tsx
File metadata and controls
36 lines (32 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { FiNavigation, FiSearch, FiUserPlus } from "react-icons/fi"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
export function Hero() {
return (
<section className="flex min-h-screen flex-col gap-40 px-6 pt-67 pb-15 sm:gap-70 sm:px-12">
<div className="flex flex-col items-center gap-17.5 text-center">
<h1 className="typo-display-small sm:typo-display-medium md:typo-display-large w-fit max-w-4xl bg-linear-to-b from-text-primary to-text-secondary bg-clip-text text-transparent">
Trova gruppi, risorse e supporto tra gli studenti del Polimi
</h1>
<Input
icon={<FiSearch className="h-5 w-5" />}
type="text"
placeholder="Find your group"
aria-label="Find your group"
containerClassName="max-w-lg"
className="typo-body-medium"
/>
<Button variant="primary" size="lg">
More groups
<FiNavigation />
</Button>
</div>
<div className="flex items-end justify-end">
<Button variant="tertiaryBlur" size="lg" className="text-blue-secondary">
<FiUserPlus />
Sei una matricola?
</Button>
</div>
</section>
)
}