-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (101 loc) · 4.1 KB
/
index.html
File metadata and controls
102 lines (101 loc) · 4.1 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RitualChain - MeeBot</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
meebot: {
bg: '#0f0e17',
surface: '#23212d',
border: '#2e2f3e',
accent: '#ff8906',
highlight: '#f25f4c',
text: {
primary: '#fffffe',
secondary: '#a7a9be',
},
glow: 'rgba(255, 137, 6, 0.3)'
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 3s ease-in-out infinite',
'shimmer': 'shimmer 2s infinite',
'aura-pulse': 'aura-pulse 2s ease-in-out infinite',
'ritual-reveal': 'ritual-reveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards',
'slide-down': 'slide-down 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards',
},
keyframes: {
'aura-pulse': {
'0%, 100%': { boxShadow: 'inset 0 0 50px rgba(255, 137, 6, 0.2)' },
'50%': { boxShadow: 'inset 0 0 100px rgba(242, 95, 76, 0.4)' },
},
'ritual-reveal': {
'0%': { opacity: '0', transform: 'translate(-50%, 20px) scale(0.9)' },
'100%': { opacity: '1', transform: 'translate(-50%, 0) scale(1)' },
},
'slide-down': {
'0%': { transform: 'translateY(-100%)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
}
}
}
}
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<link href="https://esm.sh/@rainbow-me/rainbowkit@2.0.2/styles.css" rel="stylesheet">
<style>
body { background-color: #0f0e17; color: #fffffe; overflow-x: hidden; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f0e17; }
::-webkit-scrollbar-thumb { background: #2e2f3e; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ff8906; }
.ritual-aura {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 45;
border: 2px solid transparent;
transition: all 1s ease;
}
.ritual-aura.active {
animation: aura-pulse 2s ease-in-out infinite;
border: 2px solid rgba(255, 137, 6, 0.3);
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@18.2.0",
"react/jsx-runtime": "https://esm.sh/react@18.2.0/jsx-runtime",
"react-dom": "https://esm.sh/react-dom@18.2.0",
"react-dom/client": "https://esm.sh/react-dom@18.2.0/client",
"react-router-dom": "https://esm.sh/react-router-dom@6.22.3?deps=react@18.2.0,react-dom@18.2.0",
"wagmi": "https://esm.sh/wagmi@2.5.7?deps=react@18.2.0,react-dom@18.2.0,viem@2.7.15,@tanstack/react-query@5.25.0",
"wagmi/connectors": "https://esm.sh/wagmi@2.5.7/connectors?deps=react@18.2.0,react-dom@18.2.0,viem@2.7.15",
"viem": "https://esm.sh/viem@2.7.15",
"@tanstack/react-query": "https://esm.sh/@tanstack/react-query@5.25.0?deps=react@18.2.0,react-dom@18.2.0",
"@rainbow-me/rainbowkit": "https://esm.sh/@rainbow-me/rainbowkit@2.0.2?deps=react@18.2.0,react-dom@18.2.0,wagmi@2.5.7,viem@2.7.15,@tanstack/react-query@5.25.0",
"@google/genai": "https://esm.sh/@google/genai@0.21.0",
"react-dom/": "https://esm.sh/react-dom@^18.2.0/",
"react/": "https://esm.sh/react@^18.2.0/",
"@nomicfoundation/hardhat-verify": "https://esm.sh/@nomicfoundation/hardhat-verify@^3.0.8"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>