BruceBanners commited on
Commit
12980c9
·
verified ·
1 Parent(s): 666ca38

“Build a one-page site for a Norwegian multi-trade expert with ADHD who thrives on advanced tech, clear patterns, and creative problem-solving. Reference the smooth, minimal, high-tech feel of https://www.midjourney.com/home (text swirl and ASCII name) but replace its front animation with a continuous morphing wireframe: blueprint → helicopter → city skyline → electronic PCB → loop. Keep everything else dark, sparse, and interactive; no generic business clichés.”

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +262 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Nordic Mindforge Vortex
3
- emoji: 💻
4
- colorFrom: indigo
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: Nordic Mindforge Vortex 🌀
3
+ colorFrom: blue
4
+ colorTo: pink
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,263 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Nordic Mindforge Vortex</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/three@0.121.1/build/three.min.js"></script>
11
+ <script>
12
+ tailwind.config = {
13
+ darkMode: 'class',
14
+ theme: {
15
+ extend: {
16
+ fontFamily: {
17
+ 'mono': ['"IBM Plex Mono"', 'monospace'],
18
+ 'sans': ['"Inter"', 'sans-serif']
19
+ },
20
+ colors: {
21
+ 'fjord': '#1E293B',
22
+ 'aurora': '#4F46E5',
23
+ 'ice': '#E0F2FE'
24
+ }
25
+ }
26
+ }
27
+ }
28
+ </script>
29
+ <style>
30
+ @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&family=Inter:wght@400;600&display=swap');
31
+ .text-gradient {
32
+ background: linear-gradient(90deg, #4F46E5 0%, #10B981 100%);
33
+ -webkit-background-clip: text;
34
+ background-clip: text;
35
+ color: transparent;
36
+ }
37
+ .morph-container {
38
+ filter: drop-shadow(0 0 12px rgba(79, 70, 229, 0.4));
39
+ }
40
+ .terminal-line {
41
+ position: relative;
42
+ padding-left: 1.5rem;
43
+ }
44
+ .terminal-line:before {
45
+ content: '>';
46
+ position: absolute;
47
+ left: 0;
48
+ color: #4F46E5;
49
+ }
50
+ .scroll-indicator {
51
+ animation: pulse 2s infinite;
52
+ }
53
+ @keyframes pulse {
54
+ 0%, 100% { opacity: 0.4; }
55
+ 50% { opacity: 1; }
56
+ }
57
+ </style>
58
+ </head>
59
+ <body class="bg-fjord text-ice font-sans min-h-screen overflow-x-hidden">
60
+ <div id="vanta-bg" class="fixed inset-0 opacity-20 pointer-events-none"></div>
61
+
62
+ <nav class="fixed top-0 left-0 right-0 z-50 bg-fjord/80 backdrop-blur-md border-b border-aurora/20">
63
+ <div class="container mx-auto px-6 py-4 flex justify-between items-center">
64
+ <div class="text-2xl font-mono tracking-tighter">
65
+ <span class="text-gradient">NOR</span><span class="opacity-80">D1C</span>
66
+ </div>
67
+ <div class="hidden md:flex space-x-8">
68
+ <a href="#manifesto" class="font-mono text-sm hover:text-aurora transition-all">MANIFESTO</a>
69
+ <a href="#process" class="font-mono text-sm hover:text-aurora transition-all">PROCESS</a>
70
+ <a href="#contact" class="font-mono text-sm hover:text-aurora transition-all">CONTACT</a>
71
+ </div>
72
+ <button class="md:hidden">
73
+ <i data-feather="menu" class="text-aurora"></i>
74
+ </button>
75
+ </div>
76
+ </nav>
77
+
78
+ <main class="relative z-10 pt-32 pb-20 px-6 max-w-6xl mx-auto">
79
+ <section class="mb-32">
80
+ <div class="morph-container h-96 w-full mb-16" id="morph-animation"></div>
81
+ <h1 class="text-5xl md:text-7xl font-mono font-bold mb-8 leading-tight">
82
+ <span class="block opacity-80">HYPERFOCUSED</span>
83
+ <span class="text-gradient">SOLUTIONS</span>
84
+ <span class="block opacity-80">FOR COMPLEX SYSTEMS</span>
85
+ </h1>
86
+ <div class="max-w-2xl">
87
+ <p class="text-lg mb-6 leading-relaxed opacity-90">
88
+ Bridging the gap between technical precision and creative chaos. Norwegian multi-disciplinary problem solver specializing in high-tech systems with an ADHD-driven approach to innovation.
89
+ </p>
90
+ <div class="flex flex-wrap gap-4">
91
+ <button class="px-6 py-3 bg-aurora hover:bg-aurora/90 text-white font-mono text-sm rounded-full transition-all">
92
+ REQUEST PROTOCOL
93
+ </button>
94
+ <button class="px-6 py-3 border border-aurora/40 hover:border-aurora text-aurora font-mono text-sm rounded-full transition-all">
95
+ EXPLORE MATRIX
96
+ </button>
97
+ </div>
98
+ </div>
99
+ </section>
100
+
101
+ <section id="manifesto" class="mb-32 pt-20">
102
+ <h2 class="font-mono text-2xl mb-12 flex items-center">
103
+ <span class="w-8 h-px bg-aurora mr-4"></span>
104
+ MANIFESTO
105
+ </h2>
106
+ <div class="grid md:grid-cols-3 gap-8">
107
+ <div class="bg-fjord border border-aurora/10 p-6 rounded-xl hover:border-aurora/30 transition-all">
108
+ <i data-feather="cpu" class="text-aurora mb-4" stroke-width="1.5"></i>
109
+ <h3 class="font-mono text-xl mb-3">TECHNICAL DEPTH</h3>
110
+ <p class="opacity-80 leading-relaxed">
111
+ Ǣðvanced hardware/software systems architecture with obsessive attention to detail and performance optimization.
112
+ </p>
113
+ </div>
114
+ <div class="bg-fjord border border-aurora/10 p-6 rounded-xl hover:border-aurora/30 transition-all">
115
+ <i data-feather="zap" class="text-aurora mb-4" stroke-width="1.5"></i>
116
+ <h3 class="font-mono text-xl mb-3">ADHD SUPERPOWER</h3>
117
+ <p class="opacity-80 leading-relaxed">
118
+ Nonlinear thinking patterns that connect disparate concepts into novel solutions at hyper-speed.
119
+ </p>
120
+ </div>
121
+ <div class="bg-fjord border border-aurora/10 p-6 rounded-xl hover:border-aurora/30 transition-all">
122
+ <i data-feather="compass" class="text-aurora mb-4" stroke-width="1.5"></i>
123
+ <h3 class="font-mono text-xl mb-3">SCANDINAVIAN MINIMALISM</h3>
124
+ <p class="opacity-80 leading-relaxed">
125
+ Stripping complexity to reveal elegant, functional core solutions with Nordic precision.
126
+ </p>
127
+ </div>
128
+ </div>
129
+ </section>
130
+
131
+ <section id="process" class="mb-32 pt-20">
132
+ <h2 class="font-mono text-2xl mb-12 flex items-center">
133
+ <span class="w-8 h-px bg-aurora mr-4"></span>
134
+ PROCESS
135
+ </h2>
136
+ <div class="relative">
137
+ <div class="absolute left-4 md:left-6 top-0 h-full w-px bg-gradient-to-b from-aurora/30 to-transparent"></div>
138
+ <div class="space-y-16 pl-12 md:pl-20">
139
+ <div>
140
+ <div class="absolute left-0 w-3 h-3 rounded-full bg-aurora mt-1.5"></div>
141
+ <h3 class="font-mono text-xl mb-4">PATTERN RECOGNITION</h3>
142
+ <p class="opacity-80 leading-relaxed pl-1">
143
+ Identifying underlying structures in apparent chaos through visual and conceptual pattern mapping.
144
+ </p>
145
+ </div>
146
+ <div>
147
+ <div class="absolute left-0 w-3 h-3 rounded-full bg-aurora mt-1.5"></div>
148
+ <h3 class="font-mono text-xl mb-4">RAPID PROTOTYPING</h3>
149
+ <p class="opacity-80 leading-relaxed pl-1">
150
+ Parallel development of multiple solution paths with continuous feedback integration.
151
+ </p>
152
+ </div>
153
+ <div>
154
+ <div class="absolute left-0 w-3 h-3 rounded-full bg-aurora mt-1.5"></div>
155
+ <h3 class="font-mono text-xl mb-4">SYSTEM OPTIMIZATION</h3>
156
+ <p class="opacity-80 leading-relaxed pl-1">
157
+ Streamlining solutions to their most efficient form while maintaining flexibility.
158
+ </p>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </section>
163
+
164
+ <section id="contact" class="pt-20">
165
+ <h2 class="font-mono text-2xl mb-12 flex items-center">
166
+ <span class="w-8 h-px bg-aurora mr-4"></span>
167
+ CONTACT
168
+ </h2>
169
+ <div class="grid md:grid-cols-2 gap-12">
170
+ <div>
171
+ <div class="terminal-line mb-4 font-mono">STATUS: <span class="text-aurora">ACTIVE</span></div>
172
+ <div class="terminal-line mb-4 font-mono">LOCATION: <span class="opacity-80">62°N 10°E</span></div>
173
+ <div class="terminal-line mb-4 font-mono">BANDWIDTH: <span class="opacity-80">HIGH-FREQUENCY</span></div>
174
+ </div>
175
+ <form class="space-y-6">
176
+ <div>
177
+ <label class="block font-mono text-sm mb-2 opacity-80">YOUR_IDENTIFIER</label>
178
+ <input type="text" class="w-full bg-fjord border-b border-aurora/20 py-2 px-1 focus:border-aurora outline-none transition-all">
179
+ </div>
180
+ <div>
181
+ <label class="block font-mono text-sm mb-2 opacity-80">MESSAGE_PAYLOAD</label>
182
+ <textarea rows="4" class="w-full bg-fjord border-b border-aurora/20 py-2 px-1 focus:border-aurora outline-none transition-all"></textarea>
183
+ </div>
184
+ <button type="submit" class="px-8 py-3 bg-aurora hover:bg-aurora/90 text-white font-mono text-sm rounded-full transition-all">
185
+ INITIATE_SEQUENCE
186
+ </button>
187
+ </form>
188
+ </div>
189
+ </section>
190
+ </main>
191
+
192
+ <footer class="border-t border-aurora/10 py-12 mt-20">
193
+ <div class="container mx-auto px-6 text-center">
194
+ <div class="flex justify-center space-x-6 mb-6">
195
+ <a href="#" class="opacity-60 hover:opacity-100 transition-all"><i data-feather="github"></i></a>
196
+ <a href="#" class="opacity-60 hover:opacity-100 transition-all"><i data-feather="twitter"></i></a>
197
+ <a href="#" class="opacity-60 hover:opacity-100 transition-all"><i data-feather="linkedin"></i></a>
198
+ </div>
199
+ <div class="text-xs font-mono opacity-40">
200
+ © 2023 NORD1C SYSTEMS | ALL CHANNELS ENCRYPTED
201
+ </div>
202
+ </div>
203
+ </footer>
204
+
205
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
206
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
207
+ <script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
208
+ <script>
209
+ VANTA.NET({
210
+ el: "#vanta-bg",
211
+ color: 0x4f46e5,
212
+ backgroundColor: 0x1e293b,
213
+ points: 12,
214
+ maxDistance: 22,
215
+ spacing: 18
216
+ });
217
+
218
+ document.addEventListener('DOMContentLoaded', () => {
219
+ feather.replace();
220
+
221
+ const morphShapes = [
222
+ // Blueprint
223
+ { points: 12, complexity: 0.3, shape: 'square' },
224
+ // Helicopter
225
+ { points: 20, complexity: 0.8, shape: 'custom' },
226
+ // City skyline
227
+ { points: 15, complexity: 0.5, shape: 'linear' },
228
+ // PCB
229
+ { points: 25, complexity: 0.7, shape: 'grid' }
230
+ ];
231
+
232
+ let currentShape = 0;
233
+ const morphContainer = document.getElementById('morph-animation');
234
+
235
+ function updateMorph() {
236
+ const shape = morphShapes[currentShape % morphShapes.length];
237
+ VANTA.NET({
238
+ el: "#morph-animation",
239
+ color: 0x4f46e5,
240
+ backgroundColor: 0x1e293b00,
241
+ points: shape.points,
242
+ maxDistance: shape.complexity * 30,
243
+ spacing: shape.complexity * 20
244
+ });
245
+ currentShape++;
246
+ }
247
+
248
+ updateMorph();
249
+ setInterval(updateMorph, 3000);
250
+
251
+ // Smooth scroll for anchor links
252
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
253
+ anchor.addEventListener('click', function (e) {
254
+ e.preventDefault();
255
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
256
+ behavior: 'smooth'
257
+ });
258
+ });
259
+ });
260
+ });
261
+ </script>
262
+ </body>
263
  </html>