commit 311aed365f9fa4175b1d5a64225d56001e3ca050
Author: root <root@hub.scroll.pub>
Date: 2024-12-28 00:35:27 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..6c5ec25
--- /dev/null
+++ b/body.html
@@ -0,0 +1,37 @@
+<header>
+ <h1>Randomatic</h1>
+ <p>Discover unique, random items delivered to your door!</p>
+</header>
+
+<main>
+ <section class="hero">
+ <div class="hero-content">
+ <h2>Get Surprised Every Month</h2>
+ <p>Subscribe now and receive a handpicked random item each month.</p>
+ <button id="subscribeBtn">Subscribe for $9.99/month</button>
+ </div>
+ </section>
+
+ <section class="features">
+ <div class="feature">
+ <h3>Unique Items</h3>
+ <p>From gadgets to decor, each item is a surprise.</p>
+ </div>
+ <div class="feature">
+ <h3>Curated Selection</h3>
+ <p>Our team ensures every item is high-quality and interesting.</p>
+ </div>
+ <div class="feature">
+ <h3>Flexible Plans</h3>
+ <p>Cancel anytime, no questions asked.</p>
+ </div>
+ </section>
+</main>
+
+<footer>
+ <nav>
+ <a href="/about">About</a>
+ <a href="/faq">FAQ</a>
+ <a href="/contact">Contact</a>
+ </nav>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..96cbe89
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://randomatic.scroll.pub
+metaTags
+editButton /edit.html
+title Randomatic - Discover Unique Items
+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..f366c00
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "1dd0f9c5-cfb0-4de4-a06a-41f29b8a3fee",
+ "object": "chat.completion",
+ "created": 1735346111,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nrandomatic.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://randomatic.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Randomatic - Discover Unique Items\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Randomatic</h1>\n <p>Discover unique, random items delivered to your door!</p>\n</header>\n\n<main>\n <section class=\"hero\">\n <div class=\"hero-content\">\n <h2>Get Surprised Every Month</h2>\n <p>Subscribe now and receive a handpicked random item each month.</p>\n <button id=\"subscribeBtn\">Subscribe for $9.99/month</button>\n </div>\n </section>\n\n <section class=\"features\">\n <div class=\"feature\">\n <h3>Unique Items</h3>\n <p>From gadgets to decor, each item is a surprise.</p>\n </div>\n <div class=\"feature\">\n <h3>Curated Selection</h3>\n <p>Our team ensures every item is high-quality and interesting.</p>\n </div>\n <div class=\"feature\">\n <h3>Flexible Plans</h3>\n <p>Cancel anytime, no questions asked.</p>\n </div>\n </section>\n</main>\n\n<footer>\n <nav>\n <a href=\"/about\">About</a>\n <a href=\"/faq\">FAQ</a>\n <a href=\"/contact\">Contact</a>\n </nav>\n</footer>\n---style.css---\n:root {\n --primary-color: #6c5ce7;\n --secondary-color: #a29bfe;\n --background-color: #f8f9fa;\n --text-color: #2d3436;\n --white: #ffffff;\n}\n\nbody {\n font-family: 'Segoe UI', system-ui, sans-serif;\n margin: 0;\n padding: 0;\n color: var(--text-color);\n background-color: var(--background-color);\n line-height: 1.6;\n}\n\nheader {\n text-align: center;\n padding: 2rem;\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: var(--white);\n}\n\nh1 {\n font-size: 2.5rem;\n margin-bottom: 0.5rem;\n}\n\n.hero {\n display: flex;\n justify-content: center;\n align-items: center;\n min-height: 400px;\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik05OTkuOSA1MDBjMCAyNzYuMS0yMjMuOSA1MDAtNTAwIDUwMFMwIDc3Ni4xIDAgNTAwIDIyMy45IDAgNTAwIDBzNTAwIDIyMy45IDUwMCA1MDB6Ii8+PC9zdmc+') center/cover;\n}\n\n.hero-content {\n text-align: center;\n max-width: 600px;\n padding: 2rem;\n background: rgba(255, 255, 255, 0.9);\n border-radius: 1rem;\n}\n\n#subscribeBtn {\n background-color: var(--primary-color);\n color: var(--white);\n border: none;\n padding: 1rem 2rem;\n font-size: 1rem;\n border-radius: 0.5rem;\n cursor: pointer;\n transition: background-color 0.3s ease;\n}\n\n#subscribeBtn:hover {\n background-color: var(--secondary-color);\n}\n\n.features {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n padding: 4rem 2rem;\n}\n\n.feature {\n text-align: center;\n padding: 2rem;\n background: var(--white);\n border-radius: 1rem;\n box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n}\n\nfooter {\n text-align: center;\n padding: 2rem;\n background: var(--primary-color);\n color: var(--white);\n}\n\nfooter nav {\n display: flex;\n justify-content: center;\n gap: 1rem;\n}\n\nfooter a {\n color: var(--white);\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2rem;\n }\n\n .hero-content {\n padding: 1rem;\n }\n\n .features {\n grid-template-columns: 1fr;\n padding: 2rem 1rem;\n }\n}\n---script.js---\ndocument.getElementById('subscribeBtn').addEventListener('click', function() {\n alert('Thank you for subscribing! We\\'ll redirect you to the payment page.');\n // Here you would typically redirect to a payment page\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 242,
+ "completion_tokens": 1162,
+ "total_tokens": 1404,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 242
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..b6f7dd7
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# randomatic.scroll.pub
+Website generated by DeepSeek from prompt: Create a saas that sells random items
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..9bd8828
--- /dev/null
+++ b/script.js
@@ -0,0 +1,4 @@
+document.getElementById('subscribeBtn').addEventListener('click', function() {
+ alert('Thank you for subscribing! We\'ll redirect you to the payment page.');
+ // Here you would typically redirect to a payment page
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..0898411
--- /dev/null
+++ b/style.css
@@ -0,0 +1,107 @@
+:root {
+ --primary-color: #6c5ce7;
+ --secondary-color: #a29bfe;
+ --background-color: #f8f9fa;
+ --text-color: #2d3436;
+ --white: #ffffff;
+}
+
+body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ margin: 0;
+ padding: 0;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ line-height: 1.6;
+}
+
+header {
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+}
+
+h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+}
+
+.hero {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ min-height: 400px;
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAwIDEwMDAiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik05OTkuOSA1MDBjMCAyNzYuMS0yMjMuOSA1MDAtNTAwIDUwMFMwIDc3Ni4xIDAgNTAwIDIyMy45IDAgNTAwIDBzNTAwIDIyMy45IDUwMCA1MDB6Ii8+PC9zdmc+') center/cover;
+}
+
+.hero-content {
+ text-align: center;
+ max-width: 600px;
+ padding: 2rem;
+ background: rgba(255, 255, 255, 0.9);
+ border-radius: 1rem;
+}
+
+#subscribeBtn {
+ background-color: var(--primary-color);
+ color: var(--white);
+ border: none;
+ padding: 1rem 2rem;
+ font-size: 1rem;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+}
+
+#subscribeBtn:hover {
+ background-color: var(--secondary-color);
+}
+
+.features {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+}
+
+.feature {
+ text-align: center;
+ padding: 2rem;
+ background: var(--white);
+ border-radius: 1rem;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+}
+
+footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary-color);
+ color: var(--white);
+}
+
+footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+}
+
+footer a {
+ color: var(--white);
+ text-decoration: none;
+}
+
+@media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content {
+ padding: 1rem;
+ }
+
+ .features {
+ grid-template-columns: 1fr;
+ padding: 2rem 1rem;
+ }
+}
\ No newline at end of file