commit 99c4760e796d63e93baa9a96ff168a44182ad062
Author: root <root@hub.scroll.pub> Date: 2024-12-27 18:14:09 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..d90764d --- /dev/null +++ b/body.html @@ -0,0 +1,79 @@ +<header> + <nav> + <ul> + <li><a href="#about">About</a></li> + <li><a href="#skills">Skills</a></li> + <li><a href="#projects">Projects</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> + <div class="hero"> + <h1>Backend Wizard</h1> + <p>Building robust and scalable backend systems</p> + </div> +</header> + +<section id="about"> + <h2>About Me</h2> + <p>I am a passionate backend developer with expertise in designing and implementing efficient server-side solutions. My focus is on creating secure, scalable, and maintainable systems that power modern web applications.</p> +</section> + +<section id="skills"> + <h2>Skills</h2> + <div class="skills-grid"> + <div class="skill"> + <h3>Languages</h3> + <p>Python, Java, Go, JavaScript</p> + </div> + <div class="skill"> + <h3>Frameworks</h3> + <p>Django, Spring Boot, Express.js</p> + </div> + <div class="skill"> + <h3>Databases</h3> + <p>PostgreSQL, MySQL, MongoDB</p> + </div> + <div class="skill"> + <h3>DevOps</h3> + <p>Docker, Kubernetes, AWS, CI/CD</p> + </div> + </div> +</section> + +<section id="projects"> + <h2>Projects</h2> + <div class="projects-grid"> + <div class="project"> + <h3>E-commerce API</h3> + <p>Scalable REST API for an e-commerce platform</p> + </div> + <div class="project"> + <h3>Real-time Chat</h3> + <p>WebSocket-based chat application</p> + </div> + <div class="project"> + <h3>Data Pipeline</h3> + <p>ETL pipeline for processing large datasets</p> + </div> + </div> +</section> + +<section id="contact"> + <h2>Contact</h2> + <form id="contact-form"> + <label for="name">Name:</label> + <input type="text" id="name" name="name" required> + + <label for="email">Email:</label> + <input type="email" id="email" name="email" required> + + <label for="message">Message:</label> + <textarea id="message" name="message" required></textarea> + + <button type="submit">Send Message</button> + </form> +</section> + +<footer> + <p>Let's build something amazing together!</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..8dd4346 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://backendwiz.scroll.pub +metaTags +editButton /edit.html +title Backend Wizard - Portfolio +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..baf1529 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "3ef00bc6-e712-42c5-a7f2-067a5c8fd0bc", + "object": "chat.completion", + "created": 1735323228, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nbackendwiz.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://backendwiz.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Backend Wizard - Portfolio\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav>\n <ul>\n <li><a href=\"#about\">About</a></li>\n <li><a href=\"#skills\">Skills</a></li>\n <li><a href=\"#projects\">Projects</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n <div class=\"hero\">\n <h1>Backend Wizard</h1>\n <p>Building robust and scalable backend systems</p>\n </div>\n</header>\n\n<section id=\"about\">\n <h2>About Me</h2>\n <p>I am a passionate backend developer with expertise in designing and implementing efficient server-side solutions. My focus is on creating secure, scalable, and maintainable systems that power modern web applications.</p>\n</section>\n\n<section id=\"skills\">\n <h2>Skills</h2>\n <div class=\"skills-grid\">\n <div class=\"skill\">\n <h3>Languages</h3>\n <p>Python, Java, Go, JavaScript</p>\n </div>\n <div class=\"skill\">\n <h3>Frameworks</h3>\n <p>Django, Spring Boot, Express.js</p>\n </div>\n <div class=\"skill\">\n <h3>Databases</h3>\n <p>PostgreSQL, MySQL, MongoDB</p>\n </div>\n <div class=\"skill\">\n <h3>DevOps</h3>\n <p>Docker, Kubernetes, AWS, CI/CD</p>\n </div>\n </div>\n</section>\n\n<section id=\"projects\">\n <h2>Projects</h2>\n <div class=\"projects-grid\">\n <div class=\"project\">\n <h3>E-commerce API</h3>\n <p>Scalable REST API for an e-commerce platform</p>\n </div>\n <div class=\"project\">\n <h3>Real-time Chat</h3>\n <p>WebSocket-based chat application</p>\n </div>\n <div class=\"project\">\n <h3>Data Pipeline</h3>\n <p>ETL pipeline for processing large datasets</p>\n </div>\n </div>\n</section>\n\n<section id=\"contact\">\n <h2>Contact</h2>\n <form id=\"contact-form\">\n <label for=\"name\">Name:</label>\n <input type=\"text\" id=\"name\" name=\"name\" required>\n \n <label for=\"email\">Email:</label>\n <input type=\"email\" id=\"email\" name=\"email\" required>\n \n <label for=\"message\">Message:</label>\n <textarea id=\"message\" name=\"message\" required></textarea>\n \n <button type=\"submit\">Send Message</button>\n </form>\n</section>\n\n<footer>\n <p>Let's build something amazing together!</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #2563eb;\n --secondary-color: #1e40af;\n --background-color: #f8fafc;\n --text-color: #1e293b;\n --accent-color: #f59e0b;\n}\n\nbody {\n font-family: 'Segoe UI', system-ui, sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n}\n\nheader {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: white;\n padding: 2rem 1rem;\n text-align: center;\n}\n\n.hero h1 {\n font-size: 3rem;\n margin-bottom: 0.5rem;\n animation: fadeIn 1s ease-in;\n}\n\n.hero p {\n font-size: 1.25rem;\n opacity: 0.9;\n animation: fadeIn 1.5s ease-in;\n}\n\nnav ul {\n list-style: none;\n padding: 0;\n display: flex;\n justify-content: center;\n gap: 1.5rem;\n margin-bottom: 2rem;\n}\n\nnav a {\n color: white;\n text-decoration: none;\n font-weight: 500;\n transition: opacity 0.3s ease;\n}\n\nnav a:hover {\n opacity: 0.8;\n}\n\nsection {\n padding: 2rem 1rem;\n max-width: 1200px;\n margin: 0 auto;\n}\n\nh2 {\n color: var(--primary-color);\n margin-bottom: 1.5rem;\n font-size: 2rem;\n}\n\n.skills-grid, .projects-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1.5rem;\n}\n\n.skill, .project {\n background: white;\n padding: 1.5rem;\n border-radius: 8px;\n box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n transition: transform 0.3s ease;\n}\n\n.skill:hover, .project:hover {\n transform: translateY(-5px);\n}\n\n#contact-form {\n max-width: 600px;\n margin: 0 auto;\n display: grid;\n gap: 1rem;\n}\n\ninput, textarea {\n padding: 0.75rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n font-size: 1rem;\n}\n\nbutton {\n background: var(--primary-color);\n color: white;\n padding: 0.75rem 1.5rem;\n border: none;\n border-radius: 4px;\n cursor: pointer;\n transition: background 0.3s ease;\n}\n\nbutton:hover {\n background: var(--secondary-color);\n}\n\nfooter {\n text-align: center;\n padding: 2rem 1rem;\n background: var(--primary-color);\n color: white;\n margin-top: 2rem;\n}\n\n@keyframes fadeIn {\n from {\n opacity: 0;\n transform: translateY(20px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2rem;\n }\n \n nav ul {\n flex-direction: column;\n gap: 0.75rem;\n }\n}\n---script.js---\ndocument.getElementById('contact-form').addEventListener('submit', function(e) {\n e.preventDefault();\n \n const formData = new FormData(this);\n const data = Object.fromEntries(formData.entries());\n \n // Simulate form submission\n console.log('Form submitted:', data);\n \n alert('Thank you for your message! I will get back to you soon.');\n this.reset();\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 240, + "completion_tokens": 1579, + "total_tokens": 1819, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 240 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..bcd75bb --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# backendwiz.scroll.pub +Website generated by DeepSeek from prompt: portfolio website for a backend developer \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..0747562 --- /dev/null +++ b/script.js @@ -0,0 +1,12 @@ +document.getElementById('contact-form').addEventListener('submit', function(e) { + e.preventDefault(); + + const formData = new FormData(this); + const data = Object.fromEntries(formData.entries()); + + // Simulate form submission + console.log('Form submitted:', data); + + alert('Thank you for your message! I 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..3a51dca --- /dev/null +++ b/style.css @@ -0,0 +1,143 @@ +:root { + --primary-color: #2563eb; + --secondary-color: #1e40af; + --background-color: #f8fafc; + --text-color: #1e293b; + --accent-color: #f59e0b; +} + +body { + font-family: 'Segoe UI', system-ui, sans-serif; + line-height: 1.6; + color: var(--text-color); + background-color: var(--background-color); + margin: 0; + padding: 0; +} + +header { + background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); + color: white; + padding: 2rem 1rem; + text-align: center; +} + +.hero h1 { + font-size: 3rem; + margin-bottom: 0.5rem; + animation: fadeIn 1s ease-in; +} + +.hero p { + font-size: 1.25rem; + opacity: 0.9; + animation: fadeIn 1.5s ease-in; +} + +nav ul { + list-style: none; + padding: 0; + display: flex; + justify-content: center; + gap: 1.5rem; + margin-bottom: 2rem; +} + +nav a { + color: white; + text-decoration: none; + font-weight: 500; + transition: opacity 0.3s ease; +} + +nav a:hover { + opacity: 0.8; +} + +section { + padding: 2rem 1rem; + max-width: 1200px; + margin: 0 auto; +} + +h2 { + color: var(--primary-color); + margin-bottom: 1.5rem; + font-size: 2rem; +} + +.skills-grid, .projects-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 1.5rem; +} + +.skill, .project { + background: white; + padding: 1.5rem; + border-radius: 8px; + box-shadow: 0 2px 4px rgba(0,0,0,0.1); + transition: transform 0.3s ease; +} + +.skill:hover, .project:hover { + transform: translateY(-5px); +} + +#contact-form { + max-width: 600px; + margin: 0 auto; + display: grid; + gap: 1rem; +} + +input, textarea { + padding: 0.75rem; + border: 1px solid #ddd; + border-radius: 4px; + font-size: 1rem; +} + +button { + background: var(--primary-color); + color: white; + padding: 0.75rem 1.5rem; + border: none; + border-radius: 4px; + cursor: pointer; + transition: background 0.3s ease; +} + +button:hover { + background: var(--secondary-color); +} + +footer { + text-align: center; + padding: 2rem 1rem; + background: var(--primary-color); + color: white; + margin-top: 2rem; +} + +@keyframes fadeIn { + from { + opacity: 0; + transform: translateY(20px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +@media (max-width: 768px) { + .hero h1 { + font-size: 2rem; + } + + nav ul { + flex-direction: column; + gap: 0.75rem; + } +} \ No newline at end of file