commit 3c23c73685b149835f5867e36720c8eafc2c433b
Author: root <root@hub.scroll.pub>
Date: 2025-01-02 21:39:24 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..eb8ff56
--- /dev/null
+++ b/body.html
@@ -0,0 +1,49 @@
+<header class="hero">
+ <div class="container">
+ <h1>GoGoSaaS</h1>
+ <p class="tagline">Simplify Your Workflow with Our Micro SaaS Solution</p>
+ <a href="#features" class="cta-button">Explore Features</a>
+ </div>
+</header>
+
+<section id="features" class="features">
+ <div class="container">
+ <h2>Features</h2>
+ <div class="feature-grid">
+ <div class="feature-card">
+ <h3>Automated Tasks</h3>
+ <p>Automate repetitive tasks and save time.</p>
+ </div>
+ <div class="feature-card">
+ <h3>Real-Time Analytics</h3>
+ <p>Get insights with real-time data analytics.</p>
+ </div>
+ <div class="feature-card">
+ <h3>Seamless Integration</h3>
+ <p>Integrate with your favorite tools effortlessly.</p>
+ </div>
+ </div>
+ </div>
+</section>
+
+<section class="testimonials">
+ <div class="container">
+ <h2>What Our Users Say</h2>
+ <div class="testimonial-slider">
+ <div class="testimonial">
+ <p>"GoGoSaaS has transformed the way we work. Highly recommended!"</p>
+ <p class="author">- Jane Doe, CEO</p>
+ </div>
+ <div class="testimonial">
+ <p>"The automation features are a game-changer. Love it!"</p>
+ <p class="author">- John Smith, CTO</p>
+ </div>
+ </div>
+ </div>
+</section>
+
+<footer>
+ <div class="container">
+ <p>Contact us at <a href="mailto:info@gogosaas.scroll.pub">info@gogosaas.scroll.pub</a></p>
+ </div>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..bdc0b13
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://gogosaas.scroll.pub
+metaTags
+editButton /edit.html
+title GoGoSaaS - Simplify Your Workflow
+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..f883f0f
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "7d2c1808-e926-422a-9319-1a3b4a94f6cb",
+ "object": "chat.completion",
+ "created": 1735853943,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ngogosaas.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://gogosaas.scroll.pub\nmetaTags\neditButton /edit.html\ntitle GoGoSaaS - Simplify Your Workflow\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <div class=\"container\">\n <h1>GoGoSaaS</h1>\n <p class=\"tagline\">Simplify Your Workflow with Our Micro SaaS Solution</p>\n <a href=\"#features\" class=\"cta-button\">Explore Features</a>\n </div>\n</header>\n\n<section id=\"features\" class=\"features\">\n <div class=\"container\">\n <h2>Features</h2>\n <div class=\"feature-grid\">\n <div class=\"feature-card\">\n <h3>Automated Tasks</h3>\n <p>Automate repetitive tasks and save time.</p>\n </div>\n <div class=\"feature-card\">\n <h3>Real-Time Analytics</h3>\n <p>Get insights with real-time data analytics.</p>\n </div>\n <div class=\"feature-card\">\n <h3>Seamless Integration</h3>\n <p>Integrate with your favorite tools effortlessly.</p>\n </div>\n </div>\n </div>\n</section>\n\n<section class=\"testimonials\">\n <div class=\"container\">\n <h2>What Our Users Say</h2>\n <div class=\"testimonial-slider\">\n <div class=\"testimonial\">\n <p>\"GoGoSaaS has transformed the way we work. Highly recommended!\"</p>\n <p class=\"author\">- Jane Doe, CEO</p>\n </div>\n <div class=\"testimonial\">\n <p>\"The automation features are a game-changer. Love it!\"</p>\n <p class=\"author\">- John Smith, CTO</p>\n </div>\n </div>\n </div>\n</section>\n\n<footer>\n <div class=\"container\">\n <p>Contact us at <a href=\"mailto:info@gogosaas.scroll.pub\">info@gogosaas.scroll.pub</a></p>\n </div>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #333;\n --background-color: #f9f9f9;\n --text-color: #333;\n --white: #fff;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\n.container {\n width: 90%;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.hero {\n background: var(--primary-color);\n color: var(--white);\n padding: 100px 0;\n text-align: center;\n}\n\n.hero h1 {\n font-size: 3rem;\n margin-bottom: 20px;\n}\n\n.hero .tagline {\n font-size: 1.5rem;\n margin-bottom: 40px;\n}\n\n.cta-button {\n background: var(--white);\n color: var(--primary-color);\n padding: 10px 20px;\n text-decoration: none;\n border-radius: 5px;\n font-weight: bold;\n}\n\n.features {\n padding: 60px 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-card {\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-card h3 {\n font-size: 1.5rem;\n margin-bottom: 10px;\n}\n\n.testimonials {\n background: var(--secondary-color);\n color: var(--white);\n padding: 60px 0;\n text-align: center;\n}\n\n.testimonials h2 {\n font-size: 2.5rem;\n margin-bottom: 40px;\n}\n\n.testimonial-slider {\n display: flex;\n justify-content: center;\n gap: 20px;\n}\n\n.testimonial {\n background: var(--primary-color);\n padding: 20px;\n border-radius: 10px;\n max-width: 400px;\n}\n\n.testimonial p {\n font-size: 1.2rem;\n margin-bottom: 10px;\n}\n\n.testimonial .author {\n font-weight: bold;\n}\n\nfooter {\n background: var(--secondary-color);\n color: var(--white);\n text-align: center;\n padding: 20px 0;\n}\n\nfooter a {\n color: var(--primary-color);\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2rem;\n }\n\n .hero .tagline {\n font-size: 1.2rem;\n }\n\n .features h2, .testimonials h2 {\n font-size: 2rem;\n }\n\n .feature-grid {\n grid-template-columns: 1fr;\n }\n\n .testimonial-slider {\n flex-direction: column;\n align-items: center;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n const testimonials = document.querySelectorAll('.testimonial');\n let currentTestimonial = 0;\n\n function showTestimonial(index) {\n testimonials.forEach((testimonial, i) => {\n testimonial.style.display = i === index ? 'block' : 'none';\n });\n }\n\n function nextTestimonial() {\n currentTestimonial = (currentTestimonial + 1) % testimonials.length;\n showTestimonial(currentTestimonial);\n }\n\n setInterval(nextTestimonial, 5000);\n showTestimonial(currentTestimonial);\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 247,
+ "completion_tokens": 1375,
+ "total_tokens": 1622,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 247
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..df0115c
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# gogosaas.scroll.pub
+Website generated by DeepSeek from prompt: a landing page for a micro Saas called GoGoSaaS
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..87b40ae
--- /dev/null
+++ b/script.js
@@ -0,0 +1,18 @@
+document.addEventListener('DOMContentLoaded', function() {
+ const testimonials = document.querySelectorAll('.testimonial');
+ let currentTestimonial = 0;
+
+ function showTestimonial(index) {
+ testimonials.forEach((testimonial, i) => {
+ testimonial.style.display = i === index ? 'block' : 'none';
+ });
+ }
+
+ function nextTestimonial() {
+ currentTestimonial = (currentTestimonial + 1) % testimonials.length;
+ showTestimonial(currentTestimonial);
+ }
+
+ setInterval(nextTestimonial, 5000);
+ showTestimonial(currentTestimonial);
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..401581f
--- /dev/null
+++ b/style.css
@@ -0,0 +1,144 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #333;
+ --background-color: #f9f9f9;
+ --text-color: #333;
+ --white: #fff;
+}
+
+body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ color: var(--text-color);
+ background-color: var(--background-color);
+}
+
+.container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.hero {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 100px 0;
+ text-align: center;
+}
+
+.hero h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+}
+
+.hero .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 40px;
+}
+
+.cta-button {
+ background: var(--white);
+ color: var(--primary-color);
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-weight: bold;
+}
+
+.features {
+ padding: 60px 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-card {
+ background: var(--white);
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+.feature-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+}
+
+.testimonials {
+ background: var(--secondary-color);
+ color: var(--white);
+ padding: 60px 0;
+ text-align: center;
+}
+
+.testimonials h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+}
+
+.testimonial-slider {
+ display: flex;
+ justify-content: center;
+ gap: 20px;
+}
+
+.testimonial {
+ background: var(--primary-color);
+ padding: 20px;
+ border-radius: 10px;
+ max-width: 400px;
+}
+
+.testimonial p {
+ font-size: 1.2rem;
+ margin-bottom: 10px;
+}
+
+.testimonial .author {
+ font-weight: bold;
+}
+
+footer {
+ background: var(--secondary-color);
+ color: var(--white);
+ text-align: center;
+ padding: 20px 0;
+}
+
+footer a {
+ color: var(--primary-color);
+ text-decoration: none;
+}
+
+@media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .hero .tagline {
+ font-size: 1.2rem;
+ }
+
+ .features h2, .testimonials h2 {
+ font-size: 2rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .testimonial-slider {
+ flex-direction: column;
+ align-items: center;
+ }
+}
\ No newline at end of file