commit 09b1f3099d85d1774d782d870188619b3ef8baf8
Author: root <root@hub.scroll.pub> Date: 2024-12-28 08:59:01 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..c20d764 --- /dev/null +++ b/body.html @@ -0,0 +1,56 @@ +<header class="header"> + <div class="header-content"> + <h1>John Summit</h1> + <p>DJ | Producer | Visionary</p> + </div> +</header> + +<main> + <section class="about"> + <h2>About John Summit</h2> + <p>John Summit is a world-renowned DJ and producer, known for his electrifying performances and groundbreaking music. With a unique blend of house and techno, John has taken the electronic music scene by storm.</p> + </section> + + <section class="music"> + <h2>Music</h2> + <div class="music-grid"> + <div class="music-item"> + <h3>Latest Release</h3> + <p>Check out John's latest track, "Eclipse," available now on all platforms.</p> + </div> + <div class="music-item"> + <h3>Discography</h3> + <p>Explore John's complete discography, including albums, EPs, and singles.</p> + </div> + </div> + </section> + + <section class="tour"> + <h2>Tour Dates</h2> + <div class="tour-grid"> + <div class="tour-item"> + <h3>Upcoming Shows</h3> + <p>Don't miss John Summit live at major festivals and venues around the world.</p> + </div> + <div class="tour-item"> + <h3>Past Events</h3> + <p>Relive the magic of John's past performances with photos and videos.</p> + </div> + </div> + </section> + + <section class="contact"> + <h2>Contact</h2> + <p>For booking and inquiries, please reach out to John's management team.</p> + <a href="mailto:info@summit.scroll.pub" class="contact-button">Email Us</a> + </section> +</main> + +<footer class="footer"> + <p>Connect with John Summit</p> + <div class="social-links"> + <a href="https://instagram.com/johnsummit" class="social-link">Instagram</a> + <a href="https://twitter.com/johnsummit" class="social-link">Twitter</a> + <a href="https://facebook.com/johnsummit" class="social-link">Facebook</a> + </div> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..c23d9da --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://summit.scroll.pub +metaTags +editButton /edit.html +title John Summit - Official Website +style.css +body.html +script.js \ No newline at end of file diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..285cb7a --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "0cefffc1-a3f9-4056-bce5-07e3fa548079", + "object": "chat.completion", + "created": 1735376323, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nsummit.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://summit.scroll.pub\nmetaTags\neditButton /edit.html\ntitle John Summit - Official Website\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"header\">\n <div class=\"header-content\">\n <h1>John Summit</h1>\n <p>DJ | Producer | Visionary</p>\n </div>\n</header>\n\n<main>\n <section class=\"about\">\n <h2>About John Summit</h2>\n <p>John Summit is a world-renowned DJ and producer, known for his electrifying performances and groundbreaking music. With a unique blend of house and techno, John has taken the electronic music scene by storm.</p>\n </section>\n\n <section class=\"music\">\n <h2>Music</h2>\n <div class=\"music-grid\">\n <div class=\"music-item\">\n <h3>Latest Release</h3>\n <p>Check out John's latest track, \"Eclipse,\" available now on all platforms.</p>\n </div>\n <div class=\"music-item\">\n <h3>Discography</h3>\n <p>Explore John's complete discography, including albums, EPs, and singles.</p>\n </div>\n </div>\n </section>\n\n <section class=\"tour\">\n <h2>Tour Dates</h2>\n <div class=\"tour-grid\">\n <div class=\"tour-item\">\n <h3>Upcoming Shows</h3>\n <p>Don't miss John Summit live at major festivals and venues around the world.</p>\n </div>\n <div class=\"tour-item\">\n <h3>Past Events</h3>\n <p>Relive the magic of John's past performances with photos and videos.</p>\n </div>\n </div>\n </section>\n\n <section class=\"contact\">\n <h2>Contact</h2>\n <p>For booking and inquiries, please reach out to John's management team.</p>\n <a href=\"mailto:info@summit.scroll.pub\" class=\"contact-button\">Email Us</a>\n </section>\n</main>\n\n<footer class=\"footer\">\n <p>Connect with John Summit</p>\n <div class=\"social-links\">\n <a href=\"https://instagram.com/johnsummit\" class=\"social-link\">Instagram</a>\n <a href=\"https://twitter.com/johnsummit\" class=\"social-link\">Twitter</a>\n <a href=\"https://facebook.com/johnsummit\" class=\"social-link\">Facebook</a>\n </div>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background-color: #1a1a1a;\n color: #ffffff;\n}\n\n.header {\n background: linear-gradient(135deg, #ff6f61, #ffcc00);\n padding: 100px 20px;\n text-align: center;\n}\n\n.header h1 {\n font-size: 3rem;\n margin: 0;\n}\n\n.header p {\n font-size: 1.5rem;\n margin: 10px 0 0;\n}\n\nmain {\n padding: 20px;\n}\n\n.about, .music, .tour, .contact {\n margin-bottom: 40px;\n}\n\nh2 {\n font-size: 2rem;\n margin-bottom: 20px;\n}\n\n.music-grid, .tour-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 20px;\n}\n\n.music-item, .tour-item {\n background: #333333;\n padding: 20px;\n border-radius: 10px;\n text-align: center;\n}\n\n.music-item h3, .tour-item h3 {\n font-size: 1.5rem;\n margin-bottom: 10px;\n}\n\n.contact-button {\n display: inline-block;\n padding: 10px 20px;\n background: #ff6f61;\n color: #ffffff;\n text-decoration: none;\n border-radius: 5px;\n margin-top: 10px;\n}\n\n.footer {\n background: #333333;\n padding: 20px;\n text-align: center;\n}\n\n.social-links {\n margin-top: 10px;\n}\n\n.social-link {\n color: #ff6f61;\n text-decoration: none;\n margin: 0 10px;\n}\n\n@media (max-width: 768px) {\n .header h1 {\n font-size: 2rem;\n }\n\n .header p {\n font-size: 1rem;\n }\n\n h2 {\n font-size: 1.5rem;\n }\n\n .music-item h3, .tour-item h3 {\n font-size: 1.2rem;\n }\n}\n---script.js---\n// Smooth scrolling for anchor links\ndocument.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// Add a class to the header when scrolled\nwindow.addEventListener('scroll', function() {\n const header = document.querySelector('.header');\n if (window.scrollY > 50) {\n header.classList.add('scrolled');\n } else {\n header.classList.remove('scrolled');\n }\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 245, + "completion_tokens": 1227, + "total_tokens": 1472, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 245 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..45b3046 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# summit.scroll.pub +Website generated by DeepSeek from prompt: Build a website for John Summit. Make it really good \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..c857a35 --- /dev/null +++ b/script.js @@ -0,0 +1,19 @@ +// 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' + }); + }); +}); + +// Add a class to the header when scrolled +window.addEventListener('scroll', function() { + const header = document.querySelector('.header'); + if (window.scrollY > 50) { + header.classList.add('scrolled'); + } else { + header.classList.remove('scrolled'); + } +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..1795727 --- /dev/null +++ b/style.css @@ -0,0 +1,98 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + background-color: #1a1a1a; + color: #ffffff; +} + +.header { + background: linear-gradient(135deg, #ff6f61, #ffcc00); + padding: 100px 20px; + text-align: center; +} + +.header h1 { + font-size: 3rem; + margin: 0; +} + +.header p { + font-size: 1.5rem; + margin: 10px 0 0; +} + +main { + padding: 20px; +} + +.about, .music, .tour, .contact { + margin-bottom: 40px; +} + +h2 { + font-size: 2rem; + margin-bottom: 20px; +} + +.music-grid, .tour-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 20px; +} + +.music-item, .tour-item { + background: #333333; + padding: 20px; + border-radius: 10px; + text-align: center; +} + +.music-item h3, .tour-item h3 { + font-size: 1.5rem; + margin-bottom: 10px; +} + +.contact-button { + display: inline-block; + padding: 10px 20px; + background: #ff6f61; + color: #ffffff; + text-decoration: none; + border-radius: 5px; + margin-top: 10px; +} + +.footer { + background: #333333; + padding: 20px; + text-align: center; +} + +.social-links { + margin-top: 10px; +} + +.social-link { + color: #ff6f61; + text-decoration: none; + margin: 0 10px; +} + +@media (max-width: 768px) { + .header h1 { + font-size: 2rem; + } + + .header p { + font-size: 1rem; + } + + h2 { + font-size: 1.5rem; + } + + .music-item h3, .tour-item h3 { + font-size: 1.2rem; + } +} \ No newline at end of file