-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathpage.js
More file actions
72 lines (63 loc) · 3.58 KB
/
page.js
File metadata and controls
72 lines (63 loc) · 3.58 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
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
import Image from "next/image";
import Link from "next/link";
export default function Home() {
return (
<>
<div className="flex justify-center flex-col gap-4 items-center text-white h-[44vh] px-5 md:px-0 text-xs md:text-base ">
<div className="font-bold flex gap-6 md:gap-20 md:text-5xl justify-center items-center text-3xl">Get Me a Chai <span><img className="invertImg" src="/tea.gif" width={88} alt="" /></span></div>
<p className="text-center md:text-left">
A crowdfunding platform for creators to fund their projects.
</p>
<p className="text-center md:text-left">
A place where your fans can buy you a chai. Unleash the power of your fans and get your projects funded.
</p>
<div>
<Link href={"/login"}>
<button type="button" className="text-white bg-gradient-to-br from-purple-600 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-blue-300 dark:focus:ring-blue-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">Start Here</button>
</Link>
<Link href="/about">
<button type="button" className="text-white bg-gradient-to-br from-purple-600 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-blue-300 dark:focus:ring-blue-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">Read More</button>
</Link>
</div>
</div>
<div className="bg-white h-1 opacity-10">
</div>
<div className="text-white container mx-auto pb-32 pt-14 px-10">
<h2 className="text-3xl font-bold text-center mb-14">Your Fans can buy you a Chai</h2>
<div className="flex gap-5 justify-around">
<div className="item space-y-3 flex flex-col items-center justify-center">
<img className="bg-slate-400 rounded-full p-2 text-black" width={88} src="/man.gif" alt="" />
<p className="font-bold text-center">Fans want to help</p>
<p className="text-center">Your fans are available to support you</p>
</div>
<div className="item space-y-3 flex flex-col items-center justify-center">
<img className="bg-slate-400 rounded-full p-2 text-black" width={88} src="/coin.gif" alt="" />
<p className="font-bold text-center">Fans want to contribute</p>
<p className="text-center">Your fans are willing to contribute financially</p>
</div>
<div className="item space-y-3 flex flex-col items-center justify-center">
<img className="bg-slate-400 rounded-full p-2 text-black" width={88} src="/group.gif" alt="" />
<p className="font-bold text-center">Fans want to collaborate</p>
<p className="text-center">Your fans are ready to collaborate with you</p>
</div>
</div>
</div>
<div className="bg-white h-1 opacity-10">
</div>
<div className="text-white container mx-auto pb-32 pt-14 flex flex-col items-center justify-center">
<h2 className="text-3xl font-bold text-center mb-14">Learn more about us</h2>
{/* Responsive youtube embed */}
<div className="w-[90%] md:w-[50%]">
<iframe
className="w-full aspect-video"
src="https://www.youtube.com/embed/ojuUnfqnUI0?si=wMUv4DG3ia6Wt4zn"
title="YouTube video player"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowFullScreen>
</iframe>
</div>
</div>
</>
);
}