commit 3cefad172cb8de73b1bee5e8072383d1b350030e
Author: root <root@hub.scroll.pub> Date: 2024-12-27 16:50:03 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..404b96d --- /dev/null +++ b/body.html @@ -0,0 +1,63 @@ +<header class="header"> + <div class="logo"> + <img src="logo.png" alt="Jabulani Dog Training Academy Logo"> + </div> + <nav class="nav"> + <ul> + <li><a href="#about">About Us</a></li> + <li><a href="#services">Services</a></li> + <li><a href="#testimonials">Testimonials</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> +</header> + +<section class="hero"> + <div class="hero-content"> + <h1>Welcome to Jabulani Dog Training & Boarding Academy</h1> + <p>Your trusted partner in dog training and boarding services.</p> + <a href="#contact" class="btn">Get Started</a> + </div> +</section> + +<section id="about" class="about"> + <h2>About Us</h2> + <p>At Jabulani, we are passionate about dogs and their well-being. Our experienced trainers provide personalized training programs to help your dog thrive.</p> +</section> + +<section id="services" class="services"> + <h2>Our Services</h2> + <div class="service-item"> + <h3>Dog Training</h3> + <p>From basic obedience to advanced behavior modification, we offer a range of training programs tailored to your dog's needs.</p> + </div> + <div class="service-item"> + <h3>Boarding</h3> + <p>Our boarding facilities provide a safe and comfortable environment for your dog while you're away.</p> + </div> +</section> + +<section id="testimonials" class="testimonials"> + <h2>What Our Clients Say</h2> + <div class="testimonial-item"> + <p>"Jabulani transformed my dog's behavior. Highly recommend their training programs!"</p> + <cite>- Happy Client</cite> + </div> +</section> + +<section id="contact" class="contact"> + <h2>Contact Us</h2> + <form action="#" method="post"> + <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</button> + </form> +</section> + +<footer class="footer"> + <p>Jabulani Dog Training & Boarding Academy</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..6677906 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://jabuladogs.scroll.pub +metaTags +editButton /edit.html +title Jabulani Dog Training & Boarding Academy +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..b1142fc --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "4a924a19-69c6-4d37-91a5-ce64badb6fb8", + "object": "chat.completion", + "created": 1735318182, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\njabuladogs.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://jabuladogs.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Jabulani Dog Training & Boarding Academy\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"header\">\n <div class=\"logo\">\n <img src=\"logo.png\" alt=\"Jabulani Dog Training Academy Logo\">\n </div>\n <nav class=\"nav\">\n <ul>\n <li><a href=\"#about\">About Us</a></li>\n <li><a href=\"#services\">Services</a></li>\n <li><a href=\"#testimonials\">Testimonials</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n</header>\n\n<section class=\"hero\">\n <div class=\"hero-content\">\n <h1>Welcome to Jabulani Dog Training & Boarding Academy</h1>\n <p>Your trusted partner in dog training and boarding services.</p>\n <a href=\"#contact\" class=\"btn\">Get Started</a>\n </div>\n</section>\n\n<section id=\"about\" class=\"about\">\n <h2>About Us</h2>\n <p>At Jabulani, we are passionate about dogs and their well-being. Our experienced trainers provide personalized training programs to help your dog thrive.</p>\n</section>\n\n<section id=\"services\" class=\"services\">\n <h2>Our Services</h2>\n <div class=\"service-item\">\n <h3>Dog Training</h3>\n <p>From basic obedience to advanced behavior modification, we offer a range of training programs tailored to your dog's needs.</p>\n </div>\n <div class=\"service-item\">\n <h3>Boarding</h3>\n <p>Our boarding facilities provide a safe and comfortable environment for your dog while you're away.</p>\n </div>\n</section>\n\n<section id=\"testimonials\" class=\"testimonials\">\n <h2>What Our Clients Say</h2>\n <div class=\"testimonial-item\">\n <p>\"Jabulani transformed my dog's behavior. Highly recommend their training programs!\"</p>\n <cite>- Happy Client</cite>\n </div>\n</section>\n\n<section id=\"contact\" class=\"contact\">\n <h2>Contact Us</h2>\n <form action=\"#\" method=\"post\">\n <label for=\"name\">Name:</label>\n <input type=\"text\" id=\"name\" name=\"name\" required>\n <label for=\"email\">Email:</label>\n <input type=\"email\" id=\"email\" name=\"email\" required>\n <label for=\"message\">Message:</label>\n <textarea id=\"message\" name=\"message\" required></textarea>\n <button type=\"submit\">Send</button>\n </form>\n</section>\n\n<footer class=\"footer\">\n <p>Jabulani Dog Training & Boarding Academy</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n color: #333;\n line-height: 1.6;\n}\n\n.header {\n background: #333;\n color: #fff;\n padding: 1rem 0;\n text-align: center;\n}\n\n.logo img {\n max-width: 150px;\n}\n\n.nav ul {\n list-style: none;\n padding: 0;\n}\n\n.nav ul li {\n display: inline;\n margin: 0 15px;\n}\n\n.nav ul li a {\n color: #fff;\n text-decoration: none;\n}\n\n.hero {\n background: url('hero.jpg') no-repeat center center/cover;\n color: #fff;\n padding: 100px 20px;\n text-align: center;\n}\n\n.hero h1 {\n font-size: 2.5rem;\n}\n\n.hero p {\n font-size: 1.2rem;\n margin-bottom: 20px;\n}\n\n.btn {\n background: #ff6f61;\n color: #fff;\n padding: 10px 20px;\n text-decoration: none;\n border-radius: 5px;\n}\n\n.about, .services, .testimonials, .contact {\n padding: 50px 20px;\n text-align: center;\n}\n\n.services .service-item {\n margin-bottom: 30px;\n}\n\n.testimonials .testimonial-item {\n background: #f4f4f4;\n padding: 20px;\n margin-bottom: 20px;\n border-radius: 5px;\n}\n\n.contact form {\n max-width: 600px;\n margin: 0 auto;\n}\n\n.contact label {\n display: block;\n margin-bottom: 5px;\n}\n\n.contact input, .contact textarea {\n width: 100%;\n padding: 10px;\n margin-bottom: 20px;\n border: 1px solid #ccc;\n border-radius: 5px;\n}\n\n.contact button {\n background: #ff6f61;\n color: #fff;\n padding: 10px 20px;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n}\n\n.footer {\n background: #333;\n color: #fff;\n text-align: center;\n padding: 20px 0;\n}\n\n@media (max-width: 768px) {\n .nav ul li {\n display: block;\n margin: 10px 0;\n }\n\n .hero h1 {\n font-size: 2rem;\n }\n\n .hero p {\n font-size: 1rem;\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---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 288, + "completion_tokens": 1320, + "total_tokens": 1608, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 288 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..b24574d --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# jabuladogs.scroll.pub +Website generated by DeepSeek from prompt: I need a website for a dog training academy that also offers boarding. The website will be a replacement for https://jabuladogs.com/index.html#/ so collect the information and photos from that url. Give it a more modern look and feel and use wordpress \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..5716c79 --- /dev/null +++ b/script.js @@ -0,0 +1,9 @@ +// 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' + }); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..a3f59d9 --- /dev/null +++ b/style.css @@ -0,0 +1,122 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + color: #333; + line-height: 1.6; +} + +.header { + background: #333; + color: #fff; + padding: 1rem 0; + text-align: center; +} + +.logo img { + max-width: 150px; +} + +.nav ul { + list-style: none; + padding: 0; +} + +.nav ul li { + display: inline; + margin: 0 15px; +} + +.nav ul li a { + color: #fff; + text-decoration: none; +} + +.hero { + background: url('hero.jpg') no-repeat center center/cover; + color: #fff; + padding: 100px 20px; + text-align: center; +} + +.hero h1 { + font-size: 2.5rem; +} + +.hero p { + font-size: 1.2rem; + margin-bottom: 20px; +} + +.btn { + background: #ff6f61; + color: #fff; + padding: 10px 20px; + text-decoration: none; + border-radius: 5px; +} + +.about, .services, .testimonials, .contact { + padding: 50px 20px; + text-align: center; +} + +.services .service-item { + margin-bottom: 30px; +} + +.testimonials .testimonial-item { + background: #f4f4f4; + padding: 20px; + margin-bottom: 20px; + border-radius: 5px; +} + +.contact form { + max-width: 600px; + margin: 0 auto; +} + +.contact label { + display: block; + margin-bottom: 5px; +} + +.contact input, .contact textarea { + width: 100%; + padding: 10px; + margin-bottom: 20px; + border: 1px solid #ccc; + border-radius: 5px; +} + +.contact button { + background: #ff6f61; + color: #fff; + padding: 10px 20px; + border: none; + border-radius: 5px; + cursor: pointer; +} + +.footer { + background: #333; + color: #fff; + text-align: center; + padding: 20px 0; +} + +@media (max-width: 768px) { + .nav ul li { + display: block; + margin: 10px 0; + } + + .hero h1 { + font-size: 2rem; + } + + .hero p { + font-size: 1rem; + } +} \ No newline at end of file