summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: 0e40b3d9649403a5470285f331a5051dd164be47 (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
---
// Vibes homepage
---

<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
		<title>Vibes</title>
		<style>
			body {
				font-family: "Arial", sans-serif;
				background-color: #121212;
				color: #ffffff;
				margin: 0;
				padding: 0;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				min-height: 100vh;
				text-align: center;
			}

			h1 {
				font-size: 3rem;
				margin-bottom: 2rem;
				background: linear-gradient(
					45deg,
					#ff5252,
					#ff4081,
					#e040fb,
					#7c4dff,
					#536dfe,
					#448aff
				);
				-webkit-background-clip: text;
				background-clip: text;
				color: transparent;
				animation: gradient 10s ease infinite;
				background-size: 400% 400%;
			}

			.experiments {
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
				gap: 2rem;
				max-width: 1200px;
				padding: 2rem;
			}

			.experiment-card {
				background-color: rgba(255, 255, 255, 0.05);
				border-radius: 10px;
				overflow: hidden;
				width: 300px;
				transition:
					transform 0.3s,
					box-shadow 0.3s;
				box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
			}

			.experiment-card:hover {
				transform: translateY(-10px);
				box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
			}

			.card-preview {
				height: 200px;
				background-color: #333;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 2rem;
				background: linear-gradient(45deg, #ff5252, #7c4dff);
			}

			.card-content {
				padding: 1.5rem;
			}

			.card-content h2 {
				margin-top: 0;
				font-size: 1.5rem;
			}

			.card-content p {
				color: #aaa;
				margin-bottom: 1.5rem;
			}

			.view-btn {
				display: inline-block;
				padding: 0.5rem 1.5rem;
				background: linear-gradient(45deg, #536dfe, #448aff);
				color: white;
				text-decoration: none;
				border-radius: 30px;
				font-weight: bold;
				transition: opacity 0.3s;
			}

			.view-btn:hover {
				opacity: 0.9;
			}

			@keyframes gradient {
				0% {
					background-position: 0% 50%;
				}
				50% {
					background-position: 100% 50%;
				}
				100% {
					background-position: 0% 50%;
				}
			}
		</style>
	</head>
	<body>
		<h1>Vibes</h1>

		<div class="experiments">
			<div class="experiment-card">
				<div class="card-preview">▲</div>
				<div class="card-content">
					<h2>Isometric Triangles</h2>
					<p>
						A dynamic background with colorful isometric triangles
						that rotate and float across the screen.
					</p>
					<a href="/isometric/" class="view-btn">Go</a>
				</div>
			</div>
		</div>
	</body>
</html>