forked from prnvtripathi/hacknovate-5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sponsors.jsx
77 lines (72 loc) · 3.73 KB
/
Sponsors.jsx
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
66
67
68
69
70
71
72
73
74
75
76
77
import Heading from './Heading'
import localFont from 'next/font/local'
import Link from 'next/link'
const title = localFont({
src: './../assets/fonts/ChaletComprime-CologneSixty.ttf',
})
const Sponsors = () => {
return (
<div className='bg-gray-900 py-3 my-12'>
<div className='w-11/12 mx-auto'>
<Heading>Our Sponsors</Heading>
<div className='py-12'>
<h2 className={`text-2xl md:text-5xl text-center md:text-left text-yellow-500 mb-4 ${title.className}`}>
Gold Sponsors
</h2>
<div className='flex flex-col justify-evenly items-center md:flex-row gap-y-4'>
<Link href={'https://polygon.technology/'}>
<img src='/sponsors/polygon.png' alt='sponsor' className='w-60 mx-auto object-contain' />
</Link>
<Link href={"https://ethindia.co/"}>
<img src='/sponsors/ethindia.png' alt='sponsor' className='w-60 mx-auto bg-white rounded-3xl p-2 object-contain' />
</Link>
</div>
</div>
<div className='py-12'>
<h2 className={`text-2xl md:text-5xl text-center md:text-left text-gray-300 mb-4 ${title.className}`}>
Silver Sponsors
</h2>
<div className='flex flex-col justify-evenly items-center md:flex-row'>
<Link href={"https://www.solcanvas.xyz/"}>
<img src='/sponsors/solcanvas.png' alt='sponsor' className='w-80 mx-auto object-contain' />
</Link>
</div>
</div>
<div className='py-12'>
<h2 className={`text-2xl md:text-5xl text-center md:text-left mb-4 ${title.className}`}>
General Sponsors
</h2>
<div className='flex flex-col justify-evenly items-center md:flex-row gap-y-4'>
<Link href={"https://interviewbuddy.net/"}>
<img src='/sponsors/interviewbuddy.png' alt='sponsor' className='w-60 mx-auto object-contain' />
</Link>
<Link href={"https://gen.xyz/"}>
<img src='/sponsors/xyz.png' alt='sponsor' className='w-60 mx-auto bg-white rounded-3xl p-2 object-contain' />
</Link>
</div>
</div>
<div className=''>
<h2 className={`text-2xl md:text-5xl text-center md:text-left mb-4 ${title.className}`}>
Track Sponsors
</h2>
<div className='flex flex-col justify-evenly items-center md:flex-row'>
<Link href={"https://www.stindia.com/"}>
<img src='/sponsors/stindia.png' alt='sponsor' className='w-60 mx-auto object-contain' />
</Link>
</div>
</div>
<div className='py-12'>
<h2 className={`text-2xl md:text-5xl text-center md:text-left mb-4 ${title.className}`}>
Platform Sponsor
</h2>
<div className='flex flex-col justify-evenly items-center md:flex-row'>
<Link href={"https://devfolio.co/"}>
<img src='/sponsors/devfolio.png' alt='sponsor' className='w-60 mx-auto object-contain' />
</Link>
</div>
</div>
</div>
</div>
)
}
export default Sponsors