Skip to content

Commit a0e1021

Browse files
authored
Add files via upload
0 parents  commit a0e1021

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

index.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>GatocDev's Projects</title>
7+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
8+
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap" rel="stylesheet">
9+
<style>
10+
body {
11+
font-family: 'Orbitron', sans-serif;
12+
}
13+
.glow-card {
14+
box-shadow: 0 0 25px rgba(255, 255, 255, 0.15), 0 0 10px rgba(255, 255, 255, 0.1);
15+
transition: transform 0.3s ease, box-shadow 0.3s ease;
16+
}
17+
.glow-card:hover {
18+
transform: scale(1.05);
19+
box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
20+
}
21+
</style>
22+
</head>
23+
<body class="bg-gradient-to-br from-purple-900 via-indigo-900 to-blue-900 text-white min-h-screen p-8">
24+
<div class="max-w-6xl mx-auto">
25+
<header class="text-center mb-16">
26+
<h1 class="text-5xl font-extrabold mb-4 bg-gradient-to-r from-pink-500 via-yellow-500 to-blue-500 text-transparent bg-clip-text animate-pulse">
27+
🎮 GatocDev's Projects
28+
</h1>
29+
<p class="text-lg text-gray-300">
30+
</header>
31+
32+
<section class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-10">
33+
<!-- Project 1: Blockly JavaScript Builder -->
34+
<a href="https://gatoc-idk.github.io/Blockly-JavaScript-builder/" target="_blank"
35+
class="bg-gray-900 bg-opacity-80 rounded-3xl overflow-hidden glow-card">
36+
<img src="https://imgur.com/2QPIBtg.png" alt="Blockly JavaScript Builder"
37+
class="w-full h-48 object-contain bg-black" />
38+
<div class="p-5">
39+
<h2 class="text-2xl font-bold text-cyan-400">Blockly JavaScript Builder</h2>
40+
<p class="text-gray-400 mt-2 text-sm">Create JavaScript with drag-and-drop blocks in a fully custom environment.</p>
41+
<button class="mt-4 px-4 py-2 bg-gradient-to-r from-cyan-500 to-blue-600 hover:from-cyan-400 hover:to-blue-500 rounded-lg font-medium shadow-md">
42+
start Project
43+
</button>
44+
</div>
45+
</a>
46+
47+
<!-- Project 2: CatScript -->
48+
<a href="https://gatoc-idk.github.io/CatScript/" target="_blank"
49+
class="bg-gray-900 bg-opacity-80 rounded-3xl overflow-hidden glow-card">
50+
<img src="https://imgur.com/ljukn4G.png" alt="CatScript"
51+
class="w-full h-48 object-contain bg-black" />
52+
<div class="p-5">
53+
<h2 class="text-2xl font-bold text-pink-400">CatScript</h2>
54+
<p class="text-gray-400 mt-2 text-sm">A JavaScript-style cat language with canvas rendering .</p>
55+
<button class="mt-4 px-4 py-2 bg-gradient-to-r from-pink-500 to-purple-600 hover:from-pink-400 hover:to-purple-500 rounded-lg font-medium shadow-md">
56+
Try CatScript
57+
</button>
58+
</div>
59+
</a>
60+
61+
<!-- Add more projects below as needed -->
62+
</section>
63+
</div>
64+
</body>
65+
</html>

0 commit comments

Comments
 (0)