commit 7e8e410cc7666a65e9a90bbbc7d6098fbb0bdb7b
Author: root <root@hub.scroll.pub> Date: 2024-12-28 08:34:36 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..6eb6dd8 --- /dev/null +++ b/body.html @@ -0,0 +1,55 @@ +<header> + <nav> + <div class="logo">Egyptian Bakes</div> + <ul> + <li><a href="#about">About</a></li> + <li><a href="#menu">Menu</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> + <div class="hero"> + <h1>Welcome to Egyptian Bakes</h1> + <p>Experience the taste of authentic Egyptian pastries and breads.</p> + <a href="#menu" class="btn">Explore Our Menu</a> + </div> +</header> + +<section id="about"> + <h2>About Us</h2> + <p>At Egyptian Bakes, we bring the rich flavors of Egypt to your table. Our bakery specializes in traditional Egyptian breads, pastries, and desserts, all made with love and the finest ingredients.</p> +</section> + +<section id="menu"> + <h2>Our Menu</h2> + <div class="menu-grid"> + <div class="menu-item"> + <img src="images/bread.jpg" alt="Egyptian Bread"> + <h3>Egyptian Bread</h3> + <p>Freshly baked traditional Egyptian bread.</p> + </div> + <div class="menu-item"> + <img src="images/baklava.jpg" alt="Baklava"> + <h3>Baklava</h3> + <p>Sweet, flaky pastry filled with nuts and honey.</p> + </div> + <div class="menu-item"> + <img src="images/kunafa.jpg" alt="Kunafa"> + <h3>Kunafa</h3> + <p>Cheese-filled pastry soaked in sweet syrup.</p> + </div> + </div> +</section> + +<section id="contact"> + <h2>Contact Us</h2> + <form id="contact-form"> + <input type="text" id="name" placeholder="Your Name" required> + <input type="email" id="email" placeholder="Your Email" required> + <textarea id="message" placeholder="Your Message" required></textarea> + <button type="submit">Send Message</button> + </form> +</section> + +<footer> + <p>Visit us today and taste the magic of Egyptian baking!</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..1cadba9 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://egyptianbakes.scroll.pub +metaTags +editButton /edit.html +title Egyptian Bakes - Authentic Egyptian Bakery +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..4c90fb5 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "2dc50fd4-d3c5-4dd5-8346-aa11c5a52778", + "object": "chat.completion", + "created": 1735374857, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\negyptianbakes.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://egyptianbakes.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Egyptian Bakes - Authentic Egyptian Bakery\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav>\n <div class=\"logo\">Egyptian Bakes</div>\n <ul>\n <li><a href=\"#about\">About</a></li>\n <li><a href=\"#menu\">Menu</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n <div class=\"hero\">\n <h1>Welcome to Egyptian Bakes</h1>\n <p>Experience the taste of authentic Egyptian pastries and breads.</p>\n <a href=\"#menu\" class=\"btn\">Explore Our Menu</a>\n </div>\n</header>\n\n<section id=\"about\">\n <h2>About Us</h2>\n <p>At Egyptian Bakes, we bring the rich flavors of Egypt to your table. Our bakery specializes in traditional Egyptian breads, pastries, and desserts, all made with love and the finest ingredients.</p>\n</section>\n\n<section id=\"menu\">\n <h2>Our Menu</h2>\n <div class=\"menu-grid\">\n <div class=\"menu-item\">\n <img src=\"images/bread.jpg\" alt=\"Egyptian Bread\">\n <h3>Egyptian Bread</h3>\n <p>Freshly baked traditional Egyptian bread.</p>\n </div>\n <div class=\"menu-item\">\n <img src=\"images/baklava.jpg\" alt=\"Baklava\">\n <h3>Baklava</h3>\n <p>Sweet, flaky pastry filled with nuts and honey.</p>\n </div>\n <div class=\"menu-item\">\n <img src=\"images/kunafa.jpg\" alt=\"Kunafa\">\n <h3>Kunafa</h3>\n <p>Cheese-filled pastry soaked in sweet syrup.</p>\n </div>\n </div>\n</section>\n\n<section id=\"contact\">\n <h2>Contact Us</h2>\n <form id=\"contact-form\">\n <input type=\"text\" id=\"name\" placeholder=\"Your Name\" required>\n <input type=\"email\" id=\"email\" placeholder=\"Your Email\" required>\n <textarea id=\"message\" placeholder=\"Your Message\" required></textarea>\n <button type=\"submit\">Send Message</button>\n </form>\n</section>\n\n<footer>\n <p>Visit us today and taste the magic of Egyptian baking!</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n color: #333;\n background-color: #f4f4f4;\n}\n\nheader {\n background: url('images/hero.jpg') no-repeat center center/cover;\n color: #fff;\n padding: 2rem;\n text-align: center;\n}\n\nheader .hero h1 {\n font-size: 3rem;\n margin-bottom: 1rem;\n}\n\nheader .hero p {\n font-size: 1.5rem;\n margin-bottom: 2rem;\n}\n\nheader .hero .btn {\n background: #e67e22;\n color: #fff;\n padding: 0.75rem 1.5rem;\n text-decoration: none;\n border-radius: 5px;\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 1rem 2rem;\n background: rgba(0, 0, 0, 0.7);\n}\n\nnav .logo {\n font-size: 1.5rem;\n font-weight: bold;\n}\n\nnav ul {\n list-style: none;\n display: flex;\n}\n\nnav ul li {\n margin-left: 1rem;\n}\n\nnav ul li a {\n color: #fff;\n text-decoration: none;\n}\n\nsection {\n padding: 2rem;\n text-align: center;\n}\n\nsection h2 {\n font-size: 2rem;\n margin-bottom: 1rem;\n}\n\n.menu-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n}\n\n.menu-item {\n background: #fff;\n padding: 1rem;\n border-radius: 5px;\n box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\n}\n\n.menu-item img {\n width: 100%;\n border-radius: 5px;\n}\n\n.menu-item h3 {\n font-size: 1.25rem;\n margin: 0.5rem 0;\n}\n\n.menu-item p {\n font-size: 0.9rem;\n color: #666;\n}\n\n#contact form {\n max-width: 400px;\n margin: 0 auto;\n display: flex;\n flex-direction: column;\n}\n\n#contact form input, #contact form textarea {\n margin-bottom: 1rem;\n padding: 0.75rem;\n border: 1px solid #ccc;\n border-radius: 5px;\n}\n\n#contact form button {\n background: #e67e22;\n color: #fff;\n padding: 0.75rem;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n}\n\nfooter {\n background: #333;\n color: #fff;\n text-align: center;\n padding: 1rem;\n}\n\n@media (max-width: 768px) {\n nav ul {\n flex-direction: column;\n align-items: center;\n }\n\n nav ul li {\n margin: 0.5rem 0;\n }\n\n .menu-grid {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.getElementById('contact-form').addEventListener('submit', function(event) {\n event.preventDefault();\n alert('Thank you for your message! We will get back to you soon.');\n this.reset();\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 239, + "completion_tokens": 1356, + "total_tokens": 1595, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 239 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..7d40da8 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# egyptianbakes.scroll.pub +Website generated by DeepSeek from prompt: Create a Egyptian bakery website \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..dc7ff02 --- /dev/null +++ b/script.js @@ -0,0 +1,5 @@ +document.getElementById('contact-form').addEventListener('submit', function(event) { + event.preventDefault(); + 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..d85548c --- /dev/null +++ b/style.css @@ -0,0 +1,142 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + color: #333; + background-color: #f4f4f4; +} + +header { + background: url('images/hero.jpg') no-repeat center center/cover; + color: #fff; + padding: 2rem; + text-align: center; +} + +header .hero h1 { + font-size: 3rem; + margin-bottom: 1rem; +} + +header .hero p { + font-size: 1.5rem; + margin-bottom: 2rem; +} + +header .hero .btn { + background: #e67e22; + color: #fff; + padding: 0.75rem 1.5rem; + text-decoration: none; + border-radius: 5px; +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + padding: 1rem 2rem; + background: rgba(0, 0, 0, 0.7); +} + +nav .logo { + font-size: 1.5rem; + font-weight: bold; +} + +nav ul { + list-style: none; + display: flex; +} + +nav ul li { + margin-left: 1rem; +} + +nav ul li a { + color: #fff; + text-decoration: none; +} + +section { + padding: 2rem; + text-align: center; +} + +section h2 { + font-size: 2rem; + margin-bottom: 1rem; +} + +.menu-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 1rem; +} + +.menu-item { + background: #fff; + padding: 1rem; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +.menu-item img { + width: 100%; + border-radius: 5px; +} + +.menu-item h3 { + font-size: 1.25rem; + margin: 0.5rem 0; +} + +.menu-item p { + font-size: 0.9rem; + color: #666; +} + +#contact form { + max-width: 400px; + margin: 0 auto; + display: flex; + flex-direction: column; +} + +#contact form input, #contact form textarea { + margin-bottom: 1rem; + padding: 0.75rem; + border: 1px solid #ccc; + border-radius: 5px; +} + +#contact form button { + background: #e67e22; + color: #fff; + padding: 0.75rem; + border: none; + border-radius: 5px; + cursor: pointer; +} + +footer { + background: #333; + color: #fff; + text-align: center; + padding: 1rem; +} + +@media (max-width: 768px) { + nav ul { + flex-direction: column; + align-items: center; + } + + nav ul li { + margin: 0.5rem 0; + } + + .menu-grid { + grid-template-columns: 1fr; + } +} \ No newline at end of file