commit 64025472836dce13a21d7de2ee9932c29542103b
Author: root <root@hub.scroll.pub> Date: 2025-01-18 06:20:59 +0000 Subject: Initial commit diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..51bf0bb --- /dev/null +++ b/index.scroll @@ -0,0 +1,105 @@ +buildHtml +baseUrl https://geniuslab.io +metaTags +editButton /edit.html +title Genius Lab +style.css +header + class hero + nav + div Genius Lab + class logo + div + class nav-links + a About + href #about + a Projects + href #projects + a Contact + href #contact + div + class hero-content + h1 Welcome to Genius Lab + p Where brilliant minds collaborate and innovate + a Explore + class primary-button + href #about +main + section + id about + class about + h2 About Genius Lab + p Genius Lab is a platform for the world's brightest minds to connect, collaborate, and create groundbreaking solutions. + div + class stats-grid + div + class stat-card + div 100+ + class stat-number + p Active Projects + div + class stat-card + div 500+ + class stat-number + p Genius Members + div + class stat-card + div 24/7 + class stat-number + p Collaboration + section + id projects + class projects + h2 Featured Projects + div + class project-grid + div + class project-card + div + class project-image + h3 Quantum AI + p Revolutionizing artificial intelligence with quantum computing. + div + class project-card + div + class project-image + h3 Neural Interface + p Bridging the gap between human thought and machine interaction. + div + class project-card + div + class project-image + h3 Space Elevator + p Making space travel accessible and sustainable. + section + id contact + class contact + h2 Get in Touch + p Ready to join the Genius Lab community? Reach out to us. + form + class contact-form + input + type text + placeholder Your Name + input + type email + placeholder Your Email + textarea + placeholder Your Message + button + type submit + class primary-button + Send Message +footer + div + class footer-content + div + class footer-links + a Privacy Policy + href /privacy + a Terms of Service + href /terms + a Careers + href /careers + p Empowering geniuses worldwide. +script.js \ No newline at end of file diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..bc94a49 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "dd311ebf-219c-4493-9e6b-93044db2933b", + "object": "chat.completion", + "created": 1737181226, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\ngeniuslab.io\n---index.scroll---\nbuildHtml\nbaseUrl https://geniuslab.io\nmetaTags\neditButton /edit.html\ntitle Genius Lab\nstyle.css\nheader\n class hero\n nav\n div Genius Lab\n class logo\n div\n class nav-links\n a About\n href #about\n a Projects\n href #projects\n a Contact\n href #contact\n div\n class hero-content\n h1 Welcome to Genius Lab\n p Where brilliant minds collaborate and innovate\n a Explore\n class primary-button\n href #about\nmain\n section\n id about\n class about\n h2 About Genius Lab\n p Genius Lab is a platform for the world's brightest minds to connect, collaborate, and create groundbreaking solutions.\n div\n class stats-grid\n div\n class stat-card\n div 100+\n class stat-number\n p Active Projects\n div\n class stat-card\n div 500+\n class stat-number\n p Genius Members\n div\n class stat-card\n div 24/7\n class stat-number\n p Collaboration\n section\n id projects\n class projects\n h2 Featured Projects\n div\n class project-grid\n div\n class project-card\n div\n class project-image\n h3 Quantum AI\n p Revolutionizing artificial intelligence with quantum computing.\n div\n class project-card\n div\n class project-image\n h3 Neural Interface\n p Bridging the gap between human thought and machine interaction.\n div\n class project-card\n div\n class project-image\n h3 Space Elevator\n p Making space travel accessible and sustainable.\n section\n id contact\n class contact\n h2 Get in Touch\n p Ready to join the Genius Lab community? Reach out to us.\n form\n class contact-form\n input\n type text\n placeholder Your Name\n input\n type email\n placeholder Your Email\n textarea\n placeholder Your Message\n button\n type submit\n class primary-button\n Send Message\nfooter\n div\n class footer-content\n div\n class footer-links\n a Privacy Policy\n href /privacy\n a Terms of Service\n href /terms\n a Careers\n href /careers\n p Empowering geniuses worldwide.\nscript.js\n---style.css---\n:root {\n --primary-color: #1a73e8;\n --secondary-color: #202124;\n --background-color: #ffffff;\n --text-color: #202124;\n --accent-color: #fbbc04;\n}\n\nbody {\n font-family: 'Inter', sans-serif;\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\n.hero {\n background: linear-gradient(135deg, var(--primary-color), #6c5ce7);\n color: white;\n padding: 4rem 2rem;\n text-align: center;\n}\n\n.logo {\n font-size: 2rem;\n font-weight: bold;\n color: white;\n}\n\n.nav-links {\n display: flex;\n justify-content: center;\n gap: 2rem;\n margin-top: 1rem;\n}\n\n.nav-links a {\n color: white;\n text-decoration: none;\n font-weight: 500;\n}\n\n.hero-content {\n max-width: 800px;\n margin: 0 auto;\n}\n\n.primary-button {\n background-color: var(--accent-color);\n color: var(--secondary-color);\n padding: 0.75rem 2rem;\n border-radius: 2rem;\n text-decoration: none;\n font-weight: bold;\n display: inline-block;\n margin-top: 1rem;\n}\n\n.about, .projects, .contact {\n padding: 4rem 2rem;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.stats-grid, .project-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n}\n\n.stat-card, .project-card {\n background-color: #f5f5f5;\n padding: 2rem;\n border-radius: 1rem;\n text-align: center;\n}\n\n.stat-number {\n font-size: 2.5rem;\n font-weight: bold;\n color: var(--primary-color);\n}\n\n.project-image {\n height: 200px;\n background-color: #e0e0e0;\n border-radius: 1rem;\n margin-bottom: 1rem;\n}\n\n.contact-form {\n display: grid;\n gap: 1rem;\n max-width: 600px;\n margin: 0 auto;\n}\n\n.contact-form input, .contact-form textarea {\n padding: 0.75rem;\n border: 1px solid #ccc;\n border-radius: 0.5rem;\n font-size: 1rem;\n}\n\n.footer-content {\n background-color: var(--secondary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\n.footer-links {\n display: flex;\n justify-content: center;\n gap: 2rem;\n margin-bottom: 1rem;\n}\n\n.footer-links a {\n color: white;\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n .nav-links {\n flex-direction: column;\n gap: 1rem;\n }\n\n .hero-content h1 {\n font-size: 2rem;\n }\n\n .about, .projects, .contact {\n padding: 2rem 1rem;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Smooth scrolling for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function(e) {\n e.preventDefault();\n document.querySelector(this.getAttribute('href')).scrollIntoView({\n behavior: 'smooth'\n });\n });\n });\n\n // Form submission handling\n const contactForm = document.querySelector('.contact-form');\n if (contactForm) {\n contactForm.addEventListener('submit', function(e) {\n e.preventDefault();\n const formData = new FormData(this);\n const data = Object.fromEntries(formData);\n console.log('Form submitted:', data);\n alert('Thank you for your message! We will get back to you soon.');\n this.reset();\n });\n }\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 718, + "completion_tokens": 1450, + "total_tokens": 2168, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 718 + }, + "system_fingerprint": "fp_3a5770e1b4" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..7914627 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,3 @@ +# geniuslab.io.TLD + +website generated by DeepSeek from prompt: a website for geniuses \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..0689df5 --- /dev/null +++ b/script.js @@ -0,0 +1,24 @@ +document.addEventListener('DOMContentLoaded', function() { + // Smooth scrolling for anchor links + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function(e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); + }); + + // Form submission handling + const contactForm = document.querySelector('.contact-form'); + if (contactForm) { + contactForm.addEventListener('submit', function(e) { + e.preventDefault(); + const formData = new FormData(this); + const data = Object.fromEntries(formData); + console.log('Form submitted:', data); + alert('Thank you for your message! We will get back to you soon.'); + this.reset(); + }); + } +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..36e30e9 --- /dev/null +++ b/style.css @@ -0,0 +1,139 @@ +:root { + --primary-color: #1a73e8; + --secondary-color: #202124; + --background-color: #ffffff; + --text-color: #202124; + --accent-color: #fbbc04; +} + +body { + font-family: 'Inter', sans-serif; + color: var(--text-color); + background-color: var(--background-color); + margin: 0; + padding: 0; + line-height: 1.6; +} + +.hero { + background: linear-gradient(135deg, var(--primary-color), #6c5ce7); + color: white; + padding: 4rem 2rem; + text-align: center; +} + +.logo { + font-size: 2rem; + font-weight: bold; + color: white; +} + +.nav-links { + display: flex; + justify-content: center; + gap: 2rem; + margin-top: 1rem; +} + +.nav-links a { + color: white; + text-decoration: none; + font-weight: 500; +} + +.hero-content { + max-width: 800px; + margin: 0 auto; +} + +.primary-button { + background-color: var(--accent-color); + color: var(--secondary-color); + padding: 0.75rem 2rem; + border-radius: 2rem; + text-decoration: none; + font-weight: bold; + display: inline-block; + margin-top: 1rem; +} + +.about, .projects, .contact { + padding: 4rem 2rem; + max-width: 1200px; + margin: 0 auto; +} + +.stats-grid, .project-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + margin-top: 2rem; +} + +.stat-card, .project-card { + background-color: #f5f5f5; + padding: 2rem; + border-radius: 1rem; + text-align: center; +} + +.stat-number { + font-size: 2.5rem; + font-weight: bold; + color: var(--primary-color); +} + +.project-image { + height: 200px; + background-color: #e0e0e0; + border-radius: 1rem; + margin-bottom: 1rem; +} + +.contact-form { + display: grid; + gap: 1rem; + max-width: 600px; + margin: 0 auto; +} + +.contact-form input, .contact-form textarea { + padding: 0.75rem; + border: 1px solid #ccc; + border-radius: 0.5rem; + font-size: 1rem; +} + +.footer-content { + background-color: var(--secondary-color); + color: white; + padding: 2rem; + text-align: center; +} + +.footer-links { + display: flex; + justify-content: center; + gap: 2rem; + margin-bottom: 1rem; +} + +.footer-links a { + color: white; + text-decoration: none; +} + +@media (max-width: 768px) { + .nav-links { + flex-direction: column; + gap: 1rem; + } + + .hero-content h1 { + font-size: 2rem; + } + + .about, .projects, .contact { + padding: 2rem 1rem; + } +} \ No newline at end of file