-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
62 lines (55 loc) · 2.58 KB
/
portfolio.html
File metadata and controls
62 lines (55 loc) · 2.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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Tommy Vega</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://unpkg.com/aos@2.3.4/dist/aos.css" />
<link href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@500&display=swap" rel="stylesheet">
</head>
<body class="font-sans">
<!-- Loader Overlay -->
<div id="loader-overlay" class="fixed inset-0 z-[9999] flex items-center justify-center bg-[#1a1a1b] transition-all duration-700 opacity-100">
<div id="loader-threejs" style="width:100vw;height:100vh;display:block;"></div>
</div>
<!-- Custom Cursor -->
<div id="custom-cursor">
<div class="cursor-dot"></div>
<div class="cursor-ring"></div>
</div>
<!-- Background Particles -->
<div id="three-bg"></div>
<!-- Back to Home Button -->
<a href="index.html" class="fixed top-4 right-4 z-[9998] bg-transparent backdrop-blur-md rounded-2xl text-white hover:text-[#ffe066] transition px-4 py-3 border border-white/20 hover:border-[#ffe066]/50 outline-none flex items-center gap-2 text-sm font-semibold group">
<svg class="w-4 h-4 group-hover:-translate-x-1 transition-transform" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 19l-7-7m0 0l7-7m-7 7h18"/>
</svg>
Back
</a>
<!-- Main Content -->
<main class="min-h-screen flex items-center justify-center px-4">
<div class="text-center" data-aos="fade-up">
<h1 class="text-2xl md:text-3xl font-bold text-white mb-4">
<span data-lang="underConstruction">Site under construction</span>
</h1>
</div>
</main>
<!-- Language Switcher -->
<button id="language-switcher" class="language-switcher" aria-label="Switch language">
<span class="switch-track">
<span id="lang-en" class="switch-label">EN</span>
<span id="lang-es" class="switch-label">ES</span>
<span id="lang-knob" class="switch-knob"></span>
</span>
</button>
<script src="https://unpkg.com/gsap@3/dist/gsap.min.js"></script>
<script src="https://unpkg.com/gsap@3/dist/ScrollTrigger.min.js"></script>
<script src="https://unpkg.com/three@0.157.0/build/three.min.js"></script>
<script src="https://unpkg.com/aos@2.3.4/dist/aos.js"></script>
<script src="scripts/loader.js"></script>
<script src="scripts/translations.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>