Axiovora-X / frontend /index.html
ZAIDX11's picture
Add files using upload-large-folder tool
c4e3b10 verified
Raw
History Blame Contribute Delete
2.75 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AXIOVORA X - Mathematical Cosmos</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<style>
@keyframes titleGlow-dark {
0% { filter: brightness(1) drop-shadow(0 0 20px #00ffff); }
100% { filter: brightness(1.2) drop-shadow(0 0 40px #ff00ff); }
}
@keyframes titleGlow-light {
0% { filter: brightness(1) drop-shadow(0 0 20px #0066cc); }
100% { filter: brightness(1.2) drop-shadow(0 0 40px #ff6600); }
}
@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
@keyframes scroll {
0% { transform: translateX(-50%) translateY(0); opacity: 1; }
100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}
@keyframes pulse {
0%, 100% { opacity: 0.3; }
50% { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.animate-titleGlow-dark { animation: titleGlow-dark 3s ease-in-out infinite alternate; }
.animate-titleGlow-light { animation: titleGlow-light 3s ease-in-out infinite alternate; }
.animate-blink { animation: blink 1s infinite; }
.animate-scroll::before { animation: scroll 2s infinite; }
.animate-pulse { animation: pulse 1.5s ease-in-out infinite; }
.animate-fadeIn { animation: fadeIn 0.5s ease-out forwards; }
.animate-slideUp { animation: slideUp 0.5s ease-out forwards; }
</style>
<script type="importmap">
{
"imports": {
"react": "https://aistudiocdn.com/react@^19.1.1",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.1.1/",
"react/": "https://aistudiocdn.com/react@^19.1.1/",
"three": "https://aistudiocdn.com/three@^0.180.0",
"three/addons/": "https://aistudiocdn.com/three@^0.180.0/examples/jsm/",
"gsap": "https://aistudiocdn.com/gsap@^3.13.0",
"three/": "https://aistudiocdn.com/three@^0.180.0/"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>