forked from Arikabz/5MayHack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold-front.js
66 lines (59 loc) · 2.74 KB
/
old-front.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import { useState } from 'react'
import { Dialog } from '@headlessui/react'
import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline'
const navigation = [
{ name: 'Product', href: '#' },
{ name: 'Features', href: '#' },
{ name: 'Marketplace', href: '#' },
{ name: 'Company', href: '#' },
]
function Home() {
const [mobileMenuOpen, setMobileMenuOpen] = useState(false)
return (
<div className="bg-base-200">
<div className="mx-auto max-w-2xl py-32 sm:py-48 lg:py-56">
<div className="text-center">
<h1 className="text-4xl font-bold tracking-tight primary sm:text-6xl">
Learn English for Web3 Development!
</h1>
<p className="mt-6 text-lg leading-8 text-gray-600">¡Aprenda inglés técnico para impulsar su carrera en tecnologías Web3!</p>
<div className="mt-4 carousel max-h-10 rounded-box">
<div className="carousel-item max-w-20">
<img src="/LOGOS5MAY/Astar.png" alt="Burger" />
</div>
<div className="carousel-item max-w-20">
<img src="/LOGOS5MAY/avalanche.png" alt="Burger" />
</div>
<div className="carousel-item max-w-20">
<img src="/LOGOS5MAY/VARA.png" alt="Burger" />
</div>
<div className="carousel-item max-w-20">
<img src="/LOGOS5MAY/near2.png" alt="Burger" />
</div>
<div className="carousel-item max-w-20">
<img src="/LOGOS5MAY/push2.png" alt="Burger" />
</div>
<div className="carousel-item max-w-20">
<img src="/LOGOS5MAY/icp2.png" alt="Burger" />
</div>
<div className="carousel-item max-w-20">
<img src="/LOGOS5MAY/thegraph.png" alt="Burger" />
</div>
</div>
<div className="mt-10 flex items-center justify-center gap-x-6">
<a
href="/home"
className="btn bg-primary"
>
Get started
</a>
<a href="/home" className="btn bg-secondary">
Learn more <span aria-hidden="true">→</span>
</a>
</div>
</div>
</div>
</div>
)
}
export { Home };