-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.07 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 2.07 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
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
Vantio - Dutch Music Publishing Company
</title>
<link href="https://vantio.uk/public/logo.png" rel="icon" type="image/png"/>
<script src="https://cdn.tailwindcss.com">
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"/>
</head>
<body class="font-roboto bg-gray-100">
<header class="bg-white shadow-md">
<div class="container mx-auto flex justify-between items-center p-5">
<div class="flex items-center">
<img alt="Vantio logo, a stylized musical note with a Dutch flag color scheme" class="h-10 w-10" height="50" src="https://vantio.uk/public/logo.png" width="50"/>
<span class="ml-3 text-xl font-bold text-gray-800">
Vantio
</span>
</div>
<nav>
<a class="text-gray-800 hover:text-gray-600 font-semibold" href="https://vantio.uk/auth">
Login
</a>
</nav>
</div>
</header>
<main class="container mx-auto mt-10 p-5">
<section class="text-center">
<h1 class="text-4xl font-bold text-gray-800 mb-5">
Welcome to Vantio
</h1>
<p class="text-lg text-gray-600 mb-10">
Your premier Dutch music publishing company. Discover, stream, and share the best music from the Netherlands.
</p>
<img alt="A vibrant concert scene with a crowd enjoying live music under colorful lights" class="mx-auto mb-10" height="400" src="https://storage.googleapis.com/a1aa/image/Oec3ACsXfJvS5UpZNI44XaZmN0T3K6Ui6uopswaa2nZj3O9TA.jpg" width="800"/>
<a class="bg-blue-500 text-white px-6 py-3 rounded-full font-semibold hover:bg-blue-600" href="/auth">
Login to Get Started
</a>
</section>
</main>
<footer class="bg-white shadow-md mt-10">
<div class="container mx-auto p-5 text-center">
<p class="text-gray-600">
© 2024 Vantio. All rights reserved.
</p>
</div>
</footer>
</body>
</html>