-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (141 loc) · 6.03 KB
/
index.html
File metadata and controls
148 lines (141 loc) · 6.03 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
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
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#030712" />
<meta name="color-scheme" content="dark" />
<title>FRIDAY - Generative 3D Engineering Visualization | Aditya Gaurav</title>
<meta
name="description"
content="FRIDAY is a generative 3D engineering visualization engine powered by Gemini 3.1 Pro. Turn voice commands, sketches, and prompts into interactive mechanical assemblies in real time."
/>
<meta name="keywords" content="Gemini, 3D engineering, AI, WebGL, Three.js, simulation, visualization, generative CAD, engineering AI" />
<meta name="author" content="Aditya Gaurav" />
<link rel="canonical" href="https://friday.adityaai.dev" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="FRIDAY" />
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="FRIDAY - Generative 3D Engineering Visualization" />
<meta property="og:description" content="Speak a system name or upload a sketch. Watch a 3D mechanical assembly compile in front of you in under a minute. Powered by Gemini 3.1 Pro." />
<meta property="og:image" content="https://friday.adityaai.dev/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="FRIDAY - Generative 3D Engineering Visualization" />
<meta property="og:url" content="https://friday.adityaai.dev" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@adityaaidev" />
<meta name="twitter:creator" content="@adityaaidev" />
<meta name="twitter:title" content="FRIDAY - Generative 3D Engineering Visualization" />
<meta name="twitter:description" content="Speak a system name. Watch a 3D mechanical assembly compile in under a minute." />
<meta name="twitter:image" content="https://friday.adityaai.dev/og-image.png" />
<meta name="twitter:image:alt" content="FRIDAY - Generative 3D Engineering Visualization" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "FRIDAY",
"alternateName": "FRIDAY Visual Engine",
"applicationCategory": "DeveloperApplication",
"applicationSubCategory": "3D Engineering Visualization",
"operatingSystem": "Web Browser",
"description": "Generative 3D engineering visualization engine powered by Gemini 3.1 Pro. Turn voice commands, sketches, and prompts into interactive mechanical assemblies in real time.",
"url": "https://friday.adityaai.dev",
"image": "https://friday.adityaai.dev/og-image.png",
"author": {
"@type": "Person",
"name": "Aditya Gaurav",
"url": "https://adityaai.dev"
},
"creator": {
"@type": "Person",
"name": "Aditya Gaurav",
"url": "https://adityaai.dev"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=JetBrains+Mono:wght@400;700&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
colors: {
lumina: {
base: '#030712',
glass: 'rgba(255, 255, 255, 0.05)',
border: 'rgba(255, 255, 255, 0.1)',
cyan: '#00f0ff',
purple: '#bd00ff',
success: '#00ff9d',
},
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
scan: 'scan 2s linear infinite',
},
keyframes: {
scan: {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(100%)' },
},
},
},
},
};
</script>
<style>
body {
background-color: #030712;
color: #e5e7eb;
overflow: hidden;
font-family: 'Inter', sans-serif;
}
.glass-panel {
background: rgba(10, 10, 20, 0.6);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }
:focus-visible { outline: 2px solid #22d3ee; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
</style>
</head>
<body>
<noscript>
<div style="padding:2rem;color:#fff;font-family:sans-serif">
FRIDAY requires JavaScript and a GPU-enabled browser to run. Please enable JavaScript.
</div>
</noscript>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>