commit e0cba242ddd0059cad3fbdcb1b1a1be97e0fd33d
Author: root <root@hub.scroll.pub> Date: 2024-12-27 16:58:49 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..80af394 --- /dev/null +++ b/body.html @@ -0,0 +1,47 @@ +<header> + <nav> + <a href="/" class="logo">PayWave</a> + <ul class="nav-links"> + <li><a href="/about">About</a></li> + <li><a href="/contact">Contact Us</a></li> + <li><a href="/organization">Organization</a></li> + </ul> + <div class="hamburger"> + <span></span> + <span></span> + <span></span> + </div> + </nav> +</header> + +<main> + <section class="hero"> + <h1>Revolutionizing Payments</h1> + <p>Secure, fast, and reliable payment solutions for businesses and individuals.</p> + <a href="/organization" class="cta">Get Started</a> + </section> + + <section class="features"> + <div class="feature"> + <h2>Global Reach</h2> + <p>Accept payments from anywhere in the world with ease.</p> + </div> + <div class="feature"> + <h2>Advanced Security</h2> + <p>State-of-the-art encryption to protect your transactions.</p> + </div> + <div class="feature"> + <h2>24/7 Support</h2> + <p>Our team is always here to assist you, day or night.</p> + </div> + </section> +</main> + +<footer> + <div class="footer-links"> + <a href="/about">About</a> + <a href="/contact">Contact Us</a> + <a href="/organization">Organization</a> + </div> + <p>PayWave - Your trusted payment partner.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..6d222e7 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://paywave.scroll.pub +metaTags +editButton /edit.html +title PayWave - Seamless Payments, Anywhere +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..babf99a --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "d1e1e187-950c-4eb6-9b82-bc34e14a023e", + "object": "chat.completion", + "created": 1735318709, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\npaywave.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://paywave.scroll.pub\nmetaTags\neditButton /edit.html\ntitle PayWave - Seamless Payments, Anywhere\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav>\n <a href=\"/\" class=\"logo\">PayWave</a>\n <ul class=\"nav-links\">\n <li><a href=\"/about\">About</a></li>\n <li><a href=\"/contact\">Contact Us</a></li>\n <li><a href=\"/organization\">Organization</a></li>\n </ul>\n <div class=\"hamburger\">\n <span></span>\n <span></span>\n <span></span>\n </div>\n </nav>\n</header>\n\n<main>\n <section class=\"hero\">\n <h1>Revolutionizing Payments</h1>\n <p>Secure, fast, and reliable payment solutions for businesses and individuals.</p>\n <a href=\"/organization\" class=\"cta\">Get Started</a>\n </section>\n\n <section class=\"features\">\n <div class=\"feature\">\n <h2>Global Reach</h2>\n <p>Accept payments from anywhere in the world with ease.</p>\n </div>\n <div class=\"feature\">\n <h2>Advanced Security</h2>\n <p>State-of-the-art encryption to protect your transactions.</p>\n </div>\n <div class=\"feature\">\n <h2>24/7 Support</h2>\n <p>Our team is always here to assist you, day or night.</p>\n </div>\n </section>\n</main>\n\n<footer>\n <div class=\"footer-links\">\n <a href=\"/about\">About</a>\n <a href=\"/contact\">Contact Us</a>\n <a href=\"/organization\">Organization</a>\n </div>\n <p>PayWave - Your trusted payment partner.</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #333;\n --background-color: #f5f5f5;\n --text-color: #333;\n --white: #fff;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\nheader {\n background-color: var(--primary-color);\n padding: 1rem 2rem;\n color: var(--white);\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: bold;\n text-decoration: none;\n color: var(--white);\n}\n\n.nav-links {\n list-style: none;\n display: flex;\n gap: 1rem;\n}\n\n.nav-links a {\n color: var(--white);\n text-decoration: none;\n font-size: 1rem;\n}\n\n.hamburger {\n display: none;\n flex-direction: column;\n gap: 0.25rem;\n cursor: pointer;\n}\n\n.hamburger span {\n width: 25px;\n height: 3px;\n background-color: var(--white);\n}\n\n.hero {\n text-align: center;\n padding: 4rem 2rem;\n background-color: var(--white);\n}\n\n.hero h1 {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n}\n\n.hero p {\n font-size: 1.2rem;\n margin-bottom: 2rem;\n}\n\n.cta {\n background-color: var(--primary-color);\n color: var(--white);\n padding: 0.75rem 1.5rem;\n text-decoration: none;\n border-radius: 5px;\n font-size: 1rem;\n}\n\n.features {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n padding: 4rem 2rem;\n background-color: var(--white);\n}\n\n.feature {\n text-align: center;\n}\n\n.feature h2 {\n font-size: 1.5rem;\n margin-bottom: 1rem;\n}\n\n.feature p {\n font-size: 1rem;\n}\n\nfooter {\n text-align: center;\n padding: 2rem;\n background-color: var(--secondary-color);\n color: var(--white);\n}\n\nfooter a {\n color: var(--white);\n text-decoration: none;\n margin: 0 0.5rem;\n}\n\n@media (max-width: 768px) {\n .nav-links {\n display: none;\n flex-direction: column;\n gap: 1rem;\n position: absolute;\n top: 60px;\n left: 0;\n width: 100%;\n background-color: var(--primary-color);\n padding: 1rem;\n }\n\n .nav-links.active {\n display: flex;\n }\n\n .hamburger {\n display: flex;\n }\n\n .hero h1 {\n font-size: 2rem;\n }\n\n .hero p {\n font-size: 1rem;\n }\n\n .features {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function () {\n const hamburger = document.querySelector('.hamburger');\n const navLinks = document.querySelector('.nav-links');\n\n hamburger.addEventListener('click', function () {\n navLinks.classList.toggle('active');\n });\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 258, + "completion_tokens": 1263, + "total_tokens": 1521, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 258 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..bff554d --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# paywave.scroll.pub +Website generated by DeepSeek from prompt: Create a payment company website with about,contact us, organization links and pages, it should work on phone and tables too \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..04d00a9 --- /dev/null +++ b/script.js @@ -0,0 +1,8 @@ +document.addEventListener('DOMContentLoaded', function () { + const hamburger = document.querySelector('.hamburger'); + const navLinks = document.querySelector('.nav-links'); + + hamburger.addEventListener('click', function () { + navLinks.classList.toggle('active'); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..df8c374 --- /dev/null +++ b/style.css @@ -0,0 +1,157 @@ +:root { + --primary-color: #4a90e2; + --secondary-color: #333; + --background-color: #f5f5f5; + --text-color: #333; + --white: #fff; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + color: var(--text-color); + background-color: var(--background-color); +} + +header { + background-color: var(--primary-color); + padding: 1rem 2rem; + color: var(--white); +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; +} + +.logo { + font-size: 1.5rem; + font-weight: bold; + text-decoration: none; + color: var(--white); +} + +.nav-links { + list-style: none; + display: flex; + gap: 1rem; +} + +.nav-links a { + color: var(--white); + text-decoration: none; + font-size: 1rem; +} + +.hamburger { + display: none; + flex-direction: column; + gap: 0.25rem; + cursor: pointer; +} + +.hamburger span { + width: 25px; + height: 3px; + background-color: var(--white); +} + +.hero { + text-align: center; + padding: 4rem 2rem; + background-color: var(--white); +} + +.hero h1 { + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.hero p { + font-size: 1.2rem; + margin-bottom: 2rem; +} + +.cta { + background-color: var(--primary-color); + color: var(--white); + padding: 0.75rem 1.5rem; + text-decoration: none; + border-radius: 5px; + font-size: 1rem; +} + +.features { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + padding: 4rem 2rem; + background-color: var(--white); +} + +.feature { + text-align: center; +} + +.feature h2 { + font-size: 1.5rem; + margin-bottom: 1rem; +} + +.feature p { + font-size: 1rem; +} + +footer { + text-align: center; + padding: 2rem; + background-color: var(--secondary-color); + color: var(--white); +} + +footer a { + color: var(--white); + text-decoration: none; + margin: 0 0.5rem; +} + +@media (max-width: 768px) { + .nav-links { + display: none; + flex-direction: column; + gap: 1rem; + position: absolute; + top: 60px; + left: 0; + width: 100%; + background-color: var(--primary-color); + padding: 1rem; + } + + .nav-links.active { + display: flex; + } + + .hamburger { + display: flex; + } + + .hero h1 { + font-size: 2rem; + } + + .hero p { + font-size: 1rem; + } + + .features { + grid-template-columns: 1fr; + } +} \ No newline at end of file