commit 580a1c6eb3fe66c9b453ae6be9c9926a8933ff8e
Author: root <root@hub.scroll.pub>
Date: 2024-12-28 00:37:31 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..ce3aea8
--- /dev/null
+++ b/body.html
@@ -0,0 +1,57 @@
+<header class="header">
+ <div class="container">
+ <h1>RandomEx</h1>
+ <p>Discover Unique Items Delivered to Your Doorstep</p>
+ <a href="#cta" class="btn">Get Started</a>
+ </div>
+</header>
+
+<section class="features">
+ <div class="container">
+ <h2>Why Choose RandomEx?</h2>
+ <div class="feature-grid">
+ <div class="feature">
+ <h3>Curated Selection</h3>
+ <p>Handpicked items for every taste and interest.</p>
+ </div>
+ <div class="feature">
+ <h3>Surprise & Delight</h3>
+ <p>Experience the joy of unexpected discoveries.</p>
+ </div>
+ <div class="feature">
+ <h3>Flexible Plans</h3>
+ <p>Choose a subscription that fits your lifestyle.</p>
+ </div>
+ </div>
+ </div>
+</section>
+
+<section class="testimonials">
+ <div class="container">
+ <h2>What Our Customers Say</h2>
+ <div class="testimonial-grid">
+ <div class="testimonial">
+ <p>"RandomEx has brought so much excitement to my life! I never know what I'll get, but it's always amazing."</p>
+ <p class="author">- Sarah L.</p>
+ </div>
+ <div class="testimonial">
+ <p>"The quality of the items is top-notch. I've discovered so many unique things I never knew I needed!"</p>
+ <p class="author">- Michael T.</p>
+ </div>
+ </div>
+ </div>
+</section>
+
+<section class="cta" id="cta">
+ <div class="container">
+ <h2>Ready to Start Your Journey?</h2>
+ <p>Join RandomEx today and experience the thrill of surprise deliveries.</p>
+ <a href="/payment" class="btn">Subscribe Now</a>
+ </div>
+</section>
+
+<footer class="footer">
+ <div class="container">
+ <p>RandomEx - Discover the Unexpected</p>
+ </div>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..cc84171
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://randomex.scroll.pub
+metaTags
+editButton /edit.html
+title RandomEx - 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..81cd704
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "54d88363-7a2f-4e84-a894-ea3f76f7c84c",
+ "object": "chat.completion",
+ "created": 1735346232,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nrandomex.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://randomex.scroll.pub\nmetaTags\neditButton /edit.html\ntitle RandomEx - Discover Unique Items\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"header\">\n <div class=\"container\">\n <h1>RandomEx</h1>\n <p>Discover Unique Items Delivered to Your Doorstep</p>\n <a href=\"#cta\" class=\"btn\">Get Started</a>\n </div>\n</header>\n\n<section class=\"features\">\n <div class=\"container\">\n <h2>Why Choose RandomEx?</h2>\n <div class=\"feature-grid\">\n <div class=\"feature\">\n <h3>Curated Selection</h3>\n <p>Handpicked items for every taste and interest.</p>\n </div>\n <div class=\"feature\">\n <h3>Surprise & Delight</h3>\n <p>Experience the joy of unexpected discoveries.</p>\n </div>\n <div class=\"feature\">\n <h3>Flexible Plans</h3>\n <p>Choose a subscription that fits your lifestyle.</p>\n </div>\n </div>\n </div>\n</section>\n\n<section class=\"testimonials\">\n <div class=\"container\">\n <h2>What Our Customers Say</h2>\n <div class=\"testimonial-grid\">\n <div class=\"testimonial\">\n <p>\"RandomEx has brought so much excitement to my life! I never know what I'll get, but it's always amazing.\"</p>\n <p class=\"author\">- Sarah L.</p>\n </div>\n <div class=\"testimonial\">\n <p>\"The quality of the items is top-notch. I've discovered so many unique things I never knew I needed!\"</p>\n <p class=\"author\">- Michael T.</p>\n </div>\n </div>\n </div>\n</section>\n\n<section class=\"cta\" id=\"cta\">\n <div class=\"container\">\n <h2>Ready to Start Your Journey?</h2>\n <p>Join RandomEx today and experience the thrill of surprise deliveries.</p>\n <a href=\"/payment\" class=\"btn\">Subscribe Now</a>\n </div>\n</section>\n\n<footer class=\"footer\">\n <div class=\"container\">\n <p>RandomEx - Discover the Unexpected</p>\n </div>\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: 'Arial', sans-serif;\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\n.container {\n max-width: 1200px;\n margin: 0 auto;\n padding: 0 20px;\n}\n\n.header {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: var(--white);\n padding: 100px 0;\n text-align: center;\n}\n\n.header h1 {\n font-size: 3rem;\n margin-bottom: 20px;\n}\n\n.header p {\n font-size: 1.2rem;\n margin-bottom: 40px;\n}\n\n.btn {\n background-color: var(--white);\n color: var(--primary-color);\n padding: 10px 20px;\n border-radius: 5px;\n text-decoration: none;\n font-weight: bold;\n transition: background-color 0.3s ease;\n}\n\n.btn:hover {\n background-color: var(--secondary-color);\n color: var(--white);\n}\n\n.features {\n padding: 80px 0;\n text-align: center;\n}\n\n.features h2 {\n font-size: 2.5rem;\n margin-bottom: 40px;\n}\n\n.feature-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 20px;\n}\n\n.feature {\n background: var(--white);\n padding: 20px;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.feature h3 {\n font-size: 1.5rem;\n margin-bottom: 10px;\n}\n\n.testimonials {\n background: var(--white);\n padding: 80px 0;\n text-align: center;\n}\n\n.testimonials h2 {\n font-size: 2.5rem;\n margin-bottom: 40px;\n}\n\n.testimonial-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 20px;\n}\n\n.testimonial {\n background: var(--background-color);\n padding: 20px;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.testimonial p {\n font-style: italic;\n}\n\n.author {\n font-weight: bold;\n margin-top: 10px;\n}\n\n.cta {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: var(--white);\n padding: 100px 0;\n text-align: center;\n}\n\n.cta h2 {\n font-size: 2.5rem;\n margin-bottom: 20px;\n}\n\n.cta p {\n font-size: 1.2rem;\n margin-bottom: 40px;\n}\n\n.footer {\n background: var(--text-color);\n color: var(--white);\n padding: 20px 0;\n text-align: center;\n}\n\n@media (max-width: 768px) {\n .header h1 {\n font-size: 2rem;\n }\n\n .header p {\n font-size: 1rem;\n }\n\n .features h2, .testimonials h2, .cta h2 {\n font-size: 2rem;\n }\n\n .feature-grid, .testimonial-grid {\n grid-template-columns: 1fr;\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": 266,
+ "completion_tokens": 1483,
+ "total_tokens": 1749,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 266
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..b5396df
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# randomex.scroll.pub
+Website generated by DeepSeek from prompt: Create a saas that sells random items. The saas has a payment section, a landing page, tesetemonials and looks like modern saas website
\ 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..9c21e61
--- /dev/null
+++ b/style.css
@@ -0,0 +1,157 @@
+:root {
+ --primary-color: #6c5ce7;
+ --secondary-color: #a29bfe;
+ --background-color: #f8f9fa;
+ --text-color: #2d3436;
+ --white: #ffffff;
+}
+
+body {
+ font-family: 'Arial', sans-serif;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+}
+
+.container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+}
+
+.header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ padding: 100px 0;
+ text-align: center;
+}
+
+.header h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+}
+
+.header p {
+ font-size: 1.2rem;
+ margin-bottom: 40px;
+}
+
+.btn {
+ background-color: var(--white);
+ color: var(--primary-color);
+ padding: 10px 20px;
+ border-radius: 5px;
+ text-decoration: none;
+ font-weight: bold;
+ transition: background-color 0.3s ease;
+}
+
+.btn:hover {
+ background-color: var(--secondary-color);
+ color: var(--white);
+}
+
+.features {
+ padding: 80px 0;
+ text-align: center;
+}
+
+.features h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+}
+
+.feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+}
+
+.feature {
+ background: var(--white);
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+.feature h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+}
+
+.testimonials {
+ background: var(--white);
+ padding: 80px 0;
+ text-align: center;
+}
+
+.testimonials h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+}
+
+.testimonial-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 20px;
+}
+
+.testimonial {
+ background: var(--background-color);
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+.testimonial p {
+ font-style: italic;
+}
+
+.author {
+ font-weight: bold;
+ margin-top: 10px;
+}
+
+.cta {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ padding: 100px 0;
+ text-align: center;
+}
+
+.cta h2 {
+ font-size: 2.5rem;
+ margin-bottom: 20px;
+}
+
+.cta p {
+ font-size: 1.2rem;
+ margin-bottom: 40px;
+}
+
+.footer {
+ background: var(--text-color);
+ color: var(--white);
+ padding: 20px 0;
+ text-align: center;
+}
+
+@media (max-width: 768px) {
+ .header h1 {
+ font-size: 2rem;
+ }
+
+ .header p {
+ font-size: 1rem;
+ }
+
+ .features h2, .testimonials h2, .cta h2 {
+ font-size: 2rem;
+ }
+
+ .feature-grid, .testimonial-grid {
+ grid-template-columns: 1fr;
+ }
+}
\ No newline at end of file