commit 0e4483ce6ccae1fc20a2c37d4e4dd4ab5cdafcad
Author: root <root@hub.scroll.pub>
Date: 2024-12-28 01:54:04 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..381f3af
--- /dev/null
+++ b/body.html
@@ -0,0 +1,44 @@
+<header class="hero">
+ <div class="container">
+ <h1>Transform Data into Stunning Infographics</h1>
+ <p class="subtitle">AI-powered infographic generation made simple and beautiful.</p>
+ <a href="#cta" class="cta-button">Get Started</a>
+ </div>
+</header>
+
+<section class="features">
+ <div class="container">
+ <h2>Why Choose Infogen?</h2>
+ <div class="feature-grid">
+ <div class="feature">
+ <div class="icon">📊</div>
+ <h3>Data-Driven Design</h3>
+ <p>Automatically generate infographics from your data with precision and clarity.</p>
+ </div>
+ <div class="feature">
+ <div class="icon">🎨</div>
+ <h3>Customizable Templates</h3>
+ <p>Choose from a variety of professionally designed templates to suit your needs.</p>
+ </div>
+ <div class="feature">
+ <div class="icon">🤖</div>
+ <h3>AI-Powered Insights</h3>
+ <p>Our AI analyzes your data to suggest the most effective visualizations.</p>
+ </div>
+ </div>
+ </div>
+</section>
+
+<section class="cta" id="cta">
+ <div class="container">
+ <h2>Ready to Create?</h2>
+ <p>Sign up today and start generating infographics in minutes.</p>
+ <a href="#signup" class="cta-button">Sign Up Now</a>
+ </div>
+</section>
+
+<footer>
+ <div class="container">
+ <p>Infogen - AI-Powered Infographic Generation</p>
+ </div>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..7f1bd87
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://infogen.scroll.pub
+metaTags
+editButton /edit.html
+title Infogen - AI-Powered Infographic Generation
+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..be2c8b3
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "ebef1790-0f04-4e51-86ae-b11b14ce7179",
+ "object": "chat.completion",
+ "created": 1735350826,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ninfogen.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://infogen.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Infogen - AI-Powered Infographic Generation\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <div class=\"container\">\n <h1>Transform Data into Stunning Infographics</h1>\n <p class=\"subtitle\">AI-powered infographic generation made simple and beautiful.</p>\n <a href=\"#cta\" class=\"cta-button\">Get Started</a>\n </div>\n</header>\n\n<section class=\"features\">\n <div class=\"container\">\n <h2>Why Choose Infogen?</h2>\n <div class=\"feature-grid\">\n <div class=\"feature\">\n <div class=\"icon\">📊</div>\n <h3>Data-Driven Design</h3>\n <p>Automatically generate infographics from your data with precision and clarity.</p>\n </div>\n <div class=\"feature\">\n <div class=\"icon\">🎨</div>\n <h3>Customizable Templates</h3>\n <p>Choose from a variety of professionally designed templates to suit your needs.</p>\n </div>\n <div class=\"feature\">\n <div class=\"icon\">🤖</div>\n <h3>AI-Powered Insights</h3>\n <p>Our AI analyzes your data to suggest the most effective visualizations.</p>\n </div>\n </div>\n </div>\n</section>\n\n<section class=\"cta\" id=\"cta\">\n <div class=\"container\">\n <h2>Ready to Create?</h2>\n <p>Sign up today and start generating infographics in minutes.</p>\n <a href=\"#signup\" class=\"cta-button\">Sign Up Now</a>\n </div>\n</section>\n\n<footer>\n <div class=\"container\">\n <p>Infogen - AI-Powered Infographic Generation</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 --cta-color: #ff6f61;\n --font-family: 'Arial', sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n color: var(--text-color);\n margin: 0;\n padding: 0;\n background-color: var(--background-color);\n line-height: 1.6;\n}\n\n.container {\n width: 90%;\n max-width: 1200px;\n margin: 0 auto;\n padding: 20px;\n}\n\n.hero {\n background: linear-gradient(135deg, var(--primary-color), #6a11cb);\n color: 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 .subtitle {\n font-size: 1.5rem;\n margin-bottom: 40px;\n}\n\n.cta-button {\n background-color: var(--cta-color);\n color: white;\n padding: 15px 30px;\n text-decoration: none;\n border-radius: 5px;\n font-size: 1.2rem;\n transition: background-color 0.3s ease;\n}\n\n.cta-button:hover {\n background-color: #ff3b2f;\n}\n\n.features {\n padding: 80px 0;\n background-color: white;\n}\n\n.features h2 {\n text-align: center;\n font-size: 2.5rem;\n margin-bottom: 60px;\n}\n\n.feature-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 30px;\n}\n\n.feature {\n text-align: center;\n padding: 20px;\n background-color: var(--background-color);\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.feature .icon {\n font-size: 3rem;\n margin-bottom: 20px;\n}\n\n.feature h3 {\n font-size: 1.5rem;\n margin-bottom: 15px;\n}\n\n.feature p {\n font-size: 1rem;\n color: #666;\n}\n\n.cta {\n background: linear-gradient(135deg, var(--primary-color), #6a11cb);\n color: 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.5rem;\n margin-bottom: 40px;\n}\n\nfooter {\n background-color: var(--secondary-color);\n color: white;\n text-align: center;\n padding: 20px 0;\n}\n\nfooter p {\n margin: 0;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2.5rem;\n }\n\n .hero .subtitle {\n font-size: 1.2rem;\n }\n\n .features h2 {\n font-size: 2rem;\n }\n\n .cta h2 {\n font-size: 2rem;\n }\n\n .cta p {\n font-size: 1.2rem;\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": 241,
+ "completion_tokens": 1299,
+ "total_tokens": 1540,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 241
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..5cb0f20
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# infogen.scroll.pub
+Website generated by DeepSeek from prompt: ai saas for infographic generation
\ 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..a8f5c48
--- /dev/null
+++ b/style.css
@@ -0,0 +1,145 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #333;
+ --background-color: #f9f9f9;
+ --text-color: #333;
+ --cta-color: #ff6f61;
+ --font-family: 'Arial', sans-serif;
+}
+
+body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ margin: 0;
+ padding: 0;
+ background-color: var(--background-color);
+ line-height: 1.6;
+}
+
+.container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 20px;
+}
+
+.hero {
+ background: linear-gradient(135deg, var(--primary-color), #6a11cb);
+ color: white;
+ padding: 100px 0;
+ text-align: center;
+}
+
+.hero h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+}
+
+.hero .subtitle {
+ font-size: 1.5rem;
+ margin-bottom: 40px;
+}
+
+.cta-button {
+ background-color: var(--cta-color);
+ color: white;
+ padding: 15px 30px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-size: 1.2rem;
+ transition: background-color 0.3s ease;
+}
+
+.cta-button:hover {
+ background-color: #ff3b2f;
+}
+
+.features {
+ padding: 80px 0;
+ background-color: white;
+}
+
+.features h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 60px;
+}
+
+.feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 30px;
+}
+
+.feature {
+ text-align: center;
+ padding: 20px;
+ background-color: var(--background-color);
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+.feature .icon {
+ font-size: 3rem;
+ margin-bottom: 20px;
+}
+
+.feature h3 {
+ font-size: 1.5rem;
+ margin-bottom: 15px;
+}
+
+.feature p {
+ font-size: 1rem;
+ color: #666;
+}
+
+.cta {
+ background: linear-gradient(135deg, var(--primary-color), #6a11cb);
+ color: white;
+ padding: 100px 0;
+ text-align: center;
+}
+
+.cta h2 {
+ font-size: 2.5rem;
+ margin-bottom: 20px;
+}
+
+.cta p {
+ font-size: 1.5rem;
+ margin-bottom: 40px;
+}
+
+footer {
+ background-color: var(--secondary-color);
+ color: white;
+ text-align: center;
+ padding: 20px 0;
+}
+
+footer p {
+ margin: 0;
+}
+
+@media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero .subtitle {
+ font-size: 1.2rem;
+ }
+
+ .features h2 {
+ font-size: 2rem;
+ }
+
+ .cta h2 {
+ font-size: 2rem;
+ }
+
+ .cta p {
+ font-size: 1.2rem;
+ }
+}
\ No newline at end of file