-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
77 lines (71 loc) · 4.42 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body class="bg-[#191919]">
<div class="logo text-4xl font-semibold font-mono mx-10 my-5">
<span class="bg-gradient-to-r from-red-500 to-red-700 text-transparent bg-clip-text font-bold cursor-pointer">
MusicCoin</span>
</div>
<section class="text-white py-16">
<div class="container mx-auto px-4 font-mono">
<div class="max-w-2xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-6 ">About Us</h2>
<p class="text-center mb-12">Blockchain technology is increasingly being used in various industries, and
the music industry is no exception. Musicoin is a platform that aims to revolutionize the music
industry with blockchain-powered, decentralized Web3 music player. <br>
With Musicoin, artists can upload their music and receive fair compensation for their work. The
platform uses blockchain technology to create a transparent and secure system for music distribution
and monetization. By removing intermediaries like record labels and streaming services, artists can
earn more money for their music.<br>
The Musicoin music player is decentralized, meaning that it operates without a central authority.
This allows for greater transparency and security in music distribution. Additionally, the player is
Web3-enabled, which means that it is built on blockchain technology and can interact with other
decentralized applications.</p>
<div class="flex flex-wrap -mx-4">
<div class="w-full md:w-1/3 px-4 mb-8">
<div class="rounded-lg shadow-lg overflow-hidden">
<img class="w-full"
src="https://media.licdn.com/dms/image/C4E03AQH8ITlcNYz1Fw/profile-displayphoto-shrink_400_400/0/1645523943713?e=1684368000&v=beta&t=fcLcVwyNgzvKFxCUnkoV_LCOtDgLvwmoMO1_BA8X3yk"
alt="Person 1">
<div class="px-6 py-4">
<h3 class="font-bold text-lg mb-2">Arijit Saha</h3>
<p class=" text-base">Second-year CSE student at JIS University</p>
</div>
</div>
</div>
<div class="w-full md:w-1/3 px-4 mb-8">
<div class="rounded-lg shadow-lg overflow-hidden">
<img class="w-full"
src="https://media.licdn.com/dms/image/C4E03AQFDB_mkMvYIEg/profile-displayphoto-shrink_400_400/0/1658861144224?e=1684368000&v=beta&t=FBRepMVjIJ-t-gmUCRCR-sm9Q1QLf17NLKryjqPlyGU"
alt="Person 2">
<div class="px-6 py-4">
<h3 class="font-bold text-lg mb-2">Amandeep Singh</h3>
<p class=" text-base">Second-year CSE student at JIS University</p>
</div>
</div>
</div>
<div class="w-full md:w-1/3 px-4 mb-8">
<div class="rounded-lg shadow-lg overflow-hidden">
<img class="w-full"
src="https://media.licdn.com/dms/image/D5603AQGYhYlfOyusHQ/profile-displayphoto-shrink_400_400/0/1676099987343?e=1684368000&v=beta&t=xHdv12b6S6EAH5f_lZmyzZ7rGF5jjsCMUrGs-4XtCE8"
alt="Person 3">
<div class="px-6 py-4">
<h3 class="font-bold text-lg mb-2">Priya Singh</h3>
<p class="text-base">Second-year CSE student at JIS University</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>