commit d621ee097e2dab3a36b7853d806d0a8a3f5e99a2
Author: root <root@hub.scroll.pub>
Date: 2025-01-06 22:07:57 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..94f81a2
--- /dev/null
+++ b/body.html
@@ -0,0 +1,48 @@
+<header>
+ <nav>
+ <a href="/">Home</a>
+ <a href="/about">About</a>
+ <a href="/contact">Contact</a>
+ <a href="/faq">FAQ</a>
+ </nav>
+ <div class="hero">
+ <h1>Mindful Healing Therapy</h1>
+ <p>Your journey to self-discovery and emotional well-being</p>
+ <a href="/contact" class="cta-button">Schedule a Session</a>
+ </div>
+</header>
+
+<main>
+ <section class="intro">
+ <h2>Welcome to Mindful Healing</h2>
+ <p>Specializing in psychodynamic therapy, we help you explore your inner world to achieve lasting change and personal growth.</p>
+ </section>
+
+ <section class="services">
+ <h2>Our Approach</h2>
+ <div class="service-cards">
+ <div class="card">
+ <h3>Individual Therapy</h3>
+ <p>One-on-one sessions tailored to your unique needs and goals.</p>
+ </div>
+ <div class="card">
+ <h3>Psychodynamic Focus</h3>
+ <p>Exploring unconscious patterns to understand current behaviors.</p>
+ </div>
+ <div class="card">
+ <h3>Safe Environment</h3>
+ <p>A confidential space for self-exploration and healing.</p>
+ </div>
+ </div>
+ </section>
+</main>
+
+<footer>
+ <div class="footer-content">
+ <p>Mindful Healing Therapy</p>
+ <nav>
+ <a href="/privacy">Privacy Policy</a>
+ <a href="/terms">Terms of Service</a>
+ </nav>
+ </div>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..836a9f2
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://mindfulhealing.scroll.pub
+metaTags
+editButton /edit.html
+title Mindful Healing Therapy
+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..6321014
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "96c346a2-36ce-4cb7-8f2e-80813e0a0a7b",
+ "object": "chat.completion",
+ "created": 1736201259,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nmindfulhealing.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://mindfulhealing.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Mindful Healing Therapy\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav>\n <a href=\"/\">Home</a>\n <a href=\"/about\">About</a>\n <a href=\"/contact\">Contact</a>\n <a href=\"/faq\">FAQ</a>\n </nav>\n <div class=\"hero\">\n <h1>Mindful Healing Therapy</h1>\n <p>Your journey to self-discovery and emotional well-being</p>\n <a href=\"/contact\" class=\"cta-button\">Schedule a Session</a>\n </div>\n</header>\n\n<main>\n <section class=\"intro\">\n <h2>Welcome to Mindful Healing</h2>\n <p>Specializing in psychodynamic therapy, we help you explore your inner world to achieve lasting change and personal growth.</p>\n </section>\n\n <section class=\"services\">\n <h2>Our Approach</h2>\n <div class=\"service-cards\">\n <div class=\"card\">\n <h3>Individual Therapy</h3>\n <p>One-on-one sessions tailored to your unique needs and goals.</p>\n </div>\n <div class=\"card\">\n <h3>Psychodynamic Focus</h3>\n <p>Exploring unconscious patterns to understand current behaviors.</p>\n </div>\n <div class=\"card\">\n <h3>Safe Environment</h3>\n <p>A confidential space for self-exploration and healing.</p>\n </div>\n </div>\n </section>\n</main>\n\n<footer>\n <div class=\"footer-content\">\n <p>Mindful Healing Therapy</p>\n <nav>\n <a href=\"/privacy\">Privacy Policy</a>\n <a href=\"/terms\">Terms of Service</a>\n </nav>\n </div>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #f5f5f5;\n --accent-color: #ff6b6b;\n --text-color: #333;\n --white: #fff;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Helvetica Neue', Arial, sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--white);\n}\n\nheader {\n background: linear-gradient(135deg, var(--primary-color), #2c3e50);\n color: var(--white);\n padding: 2rem 1rem;\n text-align: center;\n}\n\nnav {\n display: flex;\n justify-content: center;\n gap: 2rem;\n margin-bottom: 2rem;\n}\n\nnav a {\n color: var(--white);\n text-decoration: none;\n font-weight: bold;\n transition: opacity 0.3s ease;\n}\n\nnav a:hover {\n opacity: 0.8;\n}\n\n.hero {\n max-width: 800px;\n margin: 0 auto;\n}\n\n.hero h1 {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n}\n\n.cta-button {\n display: inline-block;\n background-color: var(--accent-color);\n color: var(--white);\n padding: 0.8rem 2rem;\n border-radius: 25px;\n text-decoration: none;\n margin-top: 1.5rem;\n transition: transform 0.3s ease;\n}\n\n.cta-button:hover {\n transform: translateY(-3px);\n}\n\nmain {\n padding: 2rem 1rem;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.intro {\n text-align: center;\n margin-bottom: 3rem;\n}\n\n.services {\n margin-top: 2rem;\n}\n\n.service-cards {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n}\n\n.card {\n background-color: var(--secondary-color);\n padding: 2rem;\n border-radius: 10px;\n box-shadow: 0 2px 5px rgba(0,0,0,0.1);\n transition: transform 0.3s ease;\n}\n\n.card:hover {\n transform: translateY(-5px);\n}\n\nfooter {\n background-color: var(--primary-color);\n color: var(--white);\n padding: 1rem;\n text-align: center;\n}\n\n.footer-content {\n max-width: 800px;\n margin: 0 auto;\n}\n\nfooter nav {\n margin-top: 1rem;\n}\n\nfooter a {\n color: var(--white);\n text-decoration: none;\n margin: 0 1rem;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2rem;\n }\n\n nav {\n flex-direction: column;\n gap: 1rem;\n }\n\n .service-cards {\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\n// Add active class to current navigation link\nconst currentLocation = location.href;\nconst navLinks = document.querySelectorAll('nav a');\nnavLinks.forEach(link => {\n if (link.href === currentLocation) {\n link.classList.add('active');\n }\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 253,
+ "completion_tokens": 1282,
+ "total_tokens": 1535,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 253
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..74de3aa
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# mindfulhealing.scroll.pub
+Website generated by DeepSeek from prompt: A website for a therapist with an about page, contact us, faq about psychodynamic therapy
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..840c738
--- /dev/null
+++ b/script.js
@@ -0,0 +1,18 @@
+// 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'
+ });
+ });
+});
+
+// Add active class to current navigation link
+const currentLocation = location.href;
+const navLinks = document.querySelectorAll('nav a');
+navLinks.forEach(link => {
+ if (link.href === currentLocation) {
+ link.classList.add('active');
+ }
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..7de4bfa
--- /dev/null
+++ b/style.css
@@ -0,0 +1,140 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #f5f5f5;
+ --accent-color: #ff6b6b;
+ --text-color: #333;
+ --white: #fff;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Helvetica Neue', Arial, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--white);
+}
+
+header {
+ background: linear-gradient(135deg, var(--primary-color), #2c3e50);
+ color: var(--white);
+ padding: 2rem 1rem;
+ text-align: center;
+}
+
+nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 2rem;
+}
+
+nav a {
+ color: var(--white);
+ text-decoration: none;
+ font-weight: bold;
+ transition: opacity 0.3s ease;
+}
+
+nav a:hover {
+ opacity: 0.8;
+}
+
+.hero {
+ max-width: 800px;
+ margin: 0 auto;
+}
+
+.hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+}
+
+.cta-button {
+ display: inline-block;
+ background-color: var(--accent-color);
+ color: var(--white);
+ padding: 0.8rem 2rem;
+ border-radius: 25px;
+ text-decoration: none;
+ margin-top: 1.5rem;
+ transition: transform 0.3s ease;
+}
+
+.cta-button:hover {
+ transform: translateY(-3px);
+}
+
+main {
+ padding: 2rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.intro {
+ text-align: center;
+ margin-bottom: 3rem;
+}
+
+.services {
+ margin-top: 2rem;
+}
+
+.service-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+}
+
+.card {
+ background-color: var(--secondary-color);
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+}
+
+.card:hover {
+ transform: translateY(-5px);
+}
+
+footer {
+ background-color: var(--primary-color);
+ color: var(--white);
+ padding: 1rem;
+ text-align: center;
+}
+
+.footer-content {
+ max-width: 800px;
+ margin: 0 auto;
+}
+
+footer nav {
+ margin-top: 1rem;
+}
+
+footer a {
+ color: var(--white);
+ text-decoration: none;
+ margin: 0 1rem;
+}
+
+@media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .service-cards {
+ grid-template-columns: 1fr;
+ }
+}
\ No newline at end of file