commit b2eca574302b8a06884d091078e8b978556420ad
Author: root <root@hub.scroll.pub>
Date: 2024-12-29 17:55:22 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..6463d12
--- /dev/null
+++ b/body.html
@@ -0,0 +1,52 @@
+<header class="hero">
+ <div class="container">
+ <h1>Welcome to AI Genius Agency</h1>
+ <p class="tagline">Empowering businesses with intelligent AI solutions</p>
+ <a href="#services" class="cta-button">Explore Our Services</a>
+ </div>
+</header>
+
+<section id="about" class="about-section">
+ <div class="container">
+ <h2>About Us</h2>
+ <p>We are a team of AI experts dedicated to creating innovative solutions that drive business growth and efficiency. Our mission is to make AI accessible and impactful for businesses of all sizes.</p>
+ </div>
+</section>
+
+<section id="services" class="services-section">
+ <div class="container">
+ <h2>Our Services</h2>
+ <div class="service-grid">
+ <div class="service-card">
+ <h3>AI Strategy Consulting</h3>
+ <p>Develop a comprehensive AI strategy tailored to your business needs.</p>
+ </div>
+ <div class="service-card">
+ <h3>Machine Learning Solutions</h3>
+ <p>Build and deploy machine learning models that solve real-world problems.</p>
+ </div>
+ <div class="service-card">
+ <h3>Natural Language Processing</h3>
+ <p>Implement NLP solutions to enhance customer interactions and automate processes.</p>
+ </div>
+ </div>
+ </div>
+</section>
+
+<section id="contact" class="contact-section">
+ <div class="container">
+ <h2>Get in Touch</h2>
+ <form id="contact-form">
+ <input type="text" id="name" name="name" placeholder="Your Name" required>
+ <input type="email" id="email" name="email" placeholder="Your Email" required>
+ <textarea id="message" name="message" placeholder="Your Message" required></textarea>
+ <button type="submit">Send Message</button>
+ </form>
+ </div>
+</section>
+
+<footer>
+ <div class="container">
+ <p>AI Genius Agency - Innovating with Intelligence</p>
+ </div>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..eafa4f3
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://aigenius.scroll.pub
+metaTags
+editButton /edit.html
+title AI Genius Agency - Your AI Partner for Innovation
+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..407400f
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "9a8bd089-b0c2-48d8-a924-01fcd34ff218",
+ "object": "chat.completion",
+ "created": 1735494900,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\naigenius.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://aigenius.scroll.pub\nmetaTags\neditButton /edit.html\ntitle AI Genius Agency - Your AI Partner for Innovation\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <div class=\"container\">\n <h1>Welcome to AI Genius Agency</h1>\n <p class=\"tagline\">Empowering businesses with intelligent AI solutions</p>\n <a href=\"#services\" class=\"cta-button\">Explore Our Services</a>\n </div>\n</header>\n\n<section id=\"about\" class=\"about-section\">\n <div class=\"container\">\n <h2>About Us</h2>\n <p>We are a team of AI experts dedicated to creating innovative solutions that drive business growth and efficiency. Our mission is to make AI accessible and impactful for businesses of all sizes.</p>\n </div>\n</section>\n\n<section id=\"services\" class=\"services-section\">\n <div class=\"container\">\n <h2>Our Services</h2>\n <div class=\"service-grid\">\n <div class=\"service-card\">\n <h3>AI Strategy Consulting</h3>\n <p>Develop a comprehensive AI strategy tailored to your business needs.</p>\n </div>\n <div class=\"service-card\">\n <h3>Machine Learning Solutions</h3>\n <p>Build and deploy machine learning models that solve real-world problems.</p>\n </div>\n <div class=\"service-card\">\n <h3>Natural Language Processing</h3>\n <p>Implement NLP solutions to enhance customer interactions and automate processes.</p>\n </div>\n </div>\n </div>\n</section>\n\n<section id=\"contact\" class=\"contact-section\">\n <div class=\"container\">\n <h2>Get in Touch</h2>\n <form id=\"contact-form\">\n <input type=\"text\" id=\"name\" name=\"name\" placeholder=\"Your Name\" required>\n <input type=\"email\" id=\"email\" name=\"email\" placeholder=\"Your Email\" required>\n <textarea id=\"message\" name=\"message\" placeholder=\"Your Message\" required></textarea>\n <button type=\"submit\">Send Message</button>\n </form>\n </div>\n</section>\n\n<footer>\n <div class=\"container\">\n <p>AI Genius Agency - Innovating with Intelligence</p>\n </div>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #50e3c2;\n --background-color: #f4f7f6;\n --text-color: #333;\n --light-text-color: #666;\n --font-family: 'Arial', sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\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 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), var(--secondary-color));\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 .tagline {\n font-size: 1.5rem;\n margin-bottom: 40px;\n}\n\n.cta-button {\n background-color: white;\n color: var(--primary-color);\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: var(--secondary-color);\n color: white;\n}\n\n.about-section, .services-section, .contact-section {\n padding: 60px 0;\n}\n\nh2 {\n font-size: 2.5rem;\n margin-bottom: 40px;\n text-align: center;\n}\n\n.service-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 20px;\n}\n\n.service-card {\n background-color: white;\n padding: 20px;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n text-align: center;\n}\n\n.service-card h3 {\n font-size: 1.8rem;\n margin-bottom: 15px;\n}\n\n.service-card p {\n color: var(--light-text-color);\n}\n\n.contact-section form {\n display: flex;\n flex-direction: column;\n gap: 15px;\n max-width: 600px;\n margin: 0 auto;\n}\n\n.contact-section input, .contact-section textarea {\n padding: 10px;\n border: 1px solid #ccc;\n border-radius: 5px;\n font-size: 1rem;\n}\n\n.contact-section button {\n background-color: var(--primary-color);\n color: white;\n padding: 15px;\n border: none;\n border-radius: 5px;\n font-size: 1.2rem;\n cursor: pointer;\n transition: background-color 0.3s ease;\n}\n\n.contact-section button:hover {\n background-color: var(--secondary-color);\n}\n\nfooter {\n background-color: var(--primary-color);\n color: white;\n text-align: center;\n padding: 20px 0;\n margin-top: 60px;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2.5rem;\n }\n\n .hero .tagline {\n font-size: 1.2rem;\n }\n\n h2 {\n font-size: 2rem;\n }\n\n .service-grid {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.getElementById('contact-form').addEventListener('submit', function(event) {\n event.preventDefault();\n alert('Thank you for your message! We will get back to you soon.');\n this.reset();\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 251,
+ "completion_tokens": 1386,
+ "total_tokens": 1637,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 251
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..fd5ace1
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# aigenius.scroll.pub
+Website generated by DeepSeek from prompt: in html create a fresh modern landing page thats active and beautiful for an ai agent agency
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..dc7ff02
--- /dev/null
+++ b/script.js
@@ -0,0 +1,5 @@
+document.getElementById('contact-form').addEventListener('submit', function(event) {
+ event.preventDefault();
+ alert('Thank you for your message! We will get back to you soon.');
+ this.reset();
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..8af0eb4
--- /dev/null
+++ b/style.css
@@ -0,0 +1,145 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #50e3c2;
+ --background-color: #f4f7f6;
+ --text-color: #333;
+ --light-text-color: #666;
+ --font-family: 'Arial', sans-serif;
+}
+
+body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+}
+
+.container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 20px;
+}
+
+.hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: 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-color: white;
+ color: var(--primary-color);
+ padding: 15px 30px;
+ text-decoration: none;
+ border-radius: 5px;
+ font-size: 1.2rem;
+ transition: background-color 0.3s ease;
+}
+
+.cta-button:hover {
+ background-color: var(--secondary-color);
+ color: white;
+}
+
+.about-section, .services-section, .contact-section {
+ padding: 60px 0;
+}
+
+h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+ text-align: center;
+}
+
+.service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 20px;
+}
+
+.service-card {
+ background-color: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ text-align: center;
+}
+
+.service-card h3 {
+ font-size: 1.8rem;
+ margin-bottom: 15px;
+}
+
+.service-card p {
+ color: var(--light-text-color);
+}
+
+.contact-section form {
+ display: flex;
+ flex-direction: column;
+ gap: 15px;
+ max-width: 600px;
+ margin: 0 auto;
+}
+
+.contact-section input, .contact-section textarea {
+ padding: 10px;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ font-size: 1rem;
+}
+
+.contact-section button {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 15px;
+ border: none;
+ border-radius: 5px;
+ font-size: 1.2rem;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+}
+
+.contact-section button:hover {
+ background-color: var(--secondary-color);
+}
+
+footer {
+ background-color: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 20px 0;
+ margin-top: 60px;
+}
+
+@media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero .tagline {
+ font-size: 1.2rem;
+ }
+
+ h2 {
+ font-size: 2rem;
+ }
+
+ .service-grid {
+ grid-template-columns: 1fr;
+ }
+}
\ No newline at end of file