commit e2d437ac369df5d2499df0f5eb63c8c4948914ae
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 21:52:25 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..1a75526
--- /dev/null
+++ b/body.html
@@ -0,0 +1,35 @@
+<header class="hero">
+ <h1>Strong & Healthy Life</h1>
+ <p>Your guide to building strength and improving health</p>
+</header>
+
+<main>
+ <section class="intro">
+ <h2>Welcome to Your Transformation</h2>
+ <p>Discover the essential steps to becoming stronger and healthier. Whether you're just starting out or looking to enhance your routine, we've got you covered.</p>
+ </section>
+
+ <section class="steps">
+ <div class="step">
+ <h3>1. Nutrition</h3>
+ <p>Learn how to fuel your body with the right foods. Focus on whole, nutrient-dense options and maintain a balanced diet.</p>
+ </div>
+ <div class="step">
+ <h3>2. Exercise</h3>
+ <p>Incorporate strength training and cardio into your routine. Consistency is key to building muscle and endurance.</p>
+ </div>
+ <div class="step">
+ <h3>3. Recovery</h3>
+ <p>Understand the importance of rest and recovery. Sleep well, stay hydrated, and listen to your body.</p>
+ </div>
+ </section>
+
+ <section class="cta">
+ <h2>Start Your Journey Today</h2>
+ <p>Take the first step towards a stronger, healthier you. Remember, progress takes time and dedication.</p>
+ </section>
+</main>
+
+<footer>
+ <p>Strong & Healthy Life</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..7e4b180
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://stronglife.scroll.pub
+metaTags
+editButton /edit.html
+title Strong & Healthy Life
+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..01857df
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "126dd0ef-8ce4-4c9e-8e26-a02226fb02ba",
+ "object": "chat.completion",
+ "created": 1735336330,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nstronglife.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://stronglife.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Strong & Healthy Life\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <h1>Strong & Healthy Life</h1>\n <p>Your guide to building strength and improving health</p>\n</header>\n\n<main>\n <section class=\"intro\">\n <h2>Welcome to Your Transformation</h2>\n <p>Discover the essential steps to becoming stronger and healthier. Whether you're just starting out or looking to enhance your routine, we've got you covered.</p>\n </section>\n\n <section class=\"steps\">\n <div class=\"step\">\n <h3>1. Nutrition</h3>\n <p>Learn how to fuel your body with the right foods. Focus on whole, nutrient-dense options and maintain a balanced diet.</p>\n </div>\n <div class=\"step\">\n <h3>2. Exercise</h3>\n <p>Incorporate strength training and cardio into your routine. Consistency is key to building muscle and endurance.</p>\n </div>\n <div class=\"step\">\n <h3>3. Recovery</h3>\n <p>Understand the importance of rest and recovery. Sleep well, stay hydrated, and listen to your body.</p>\n </div>\n </section>\n\n <section class=\"cta\">\n <h2>Start Your Journey Today</h2>\n <p>Take the first step towards a stronger, healthier you. Remember, progress takes time and dedication.</p>\n </section>\n</main>\n\n<footer>\n <p>Strong & Healthy Life</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #2c3e50;\n --secondary-color: #3498db;\n --background-color: #ecf0f1;\n --text-color: #333;\n --white: #fff;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n}\n\nheader.hero {\n background: var(--primary-color);\n color: var(--white);\n padding: 2rem 1rem;\n text-align: center;\n}\n\nheader.hero h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nheader.hero p {\n font-size: 1.2rem;\n margin: 0.5rem 0 0;\n}\n\nmain {\n padding: 1rem;\n}\n\nsection {\n margin-bottom: 2rem;\n}\n\nsection h2 {\n color: var(--primary-color);\n font-size: 2rem;\n margin-bottom: 1rem;\n}\n\nsection p {\n font-size: 1rem;\n line-height: 1.6;\n}\n\n.steps {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1rem;\n}\n\n.step {\n background: var(--white);\n padding: 1rem;\n border-radius: 8px;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.step h3 {\n color: var(--secondary-color);\n font-size: 1.5rem;\n margin-bottom: 0.5rem;\n}\n\n.cta {\n text-align: center;\n padding: 2rem;\n background: var(--secondary-color);\n color: var(--white);\n border-radius: 8px;\n}\n\n.cta h2 {\n margin: 0;\n font-size: 2rem;\n}\n\n.cta p {\n font-size: 1.2rem;\n margin: 0.5rem 0 0;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--primary-color);\n color: var(--white);\n margin-top: 2rem;\n}\n\n@media (max-width: 768px) {\n header.hero h1 {\n font-size: 2rem;\n }\n\n header.hero p {\n font-size: 1rem;\n }\n\n .steps {\n grid-template-columns: 1fr;\n }\n\n .cta h2 {\n font-size: 1.5rem;\n }\n\n .cta p {\n font-size: 1rem;\n }\n}\n---script.js---\n// No JavaScript required for this simple static site\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 248,
+ "completion_tokens": 1022,
+ "total_tokens": 1270,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 248
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..f073709
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# stronglife.scroll.pub
+Website generated by DeepSeek from prompt: hey i want a website that tells me how to get strong and healthy
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..aa02215
--- /dev/null
+++ b/script.js
@@ -0,0 +1 @@
+// No JavaScript required for this simple static site
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..1a03ea6
--- /dev/null
+++ b/style.css
@@ -0,0 +1,119 @@
+:root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --background-color: #ecf0f1;
+ --text-color: #333;
+ --white: #fff;
+}
+
+body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+}
+
+header.hero {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 2rem 1rem;
+ text-align: center;
+}
+
+header.hero h1 {
+ margin: 0;
+ font-size: 2.5rem;
+}
+
+header.hero p {
+ font-size: 1.2rem;
+ margin: 0.5rem 0 0;
+}
+
+main {
+ padding: 1rem;
+}
+
+section {
+ margin-bottom: 2rem;
+}
+
+section h2 {
+ color: var(--primary-color);
+ font-size: 2rem;
+ margin-bottom: 1rem;
+}
+
+section p {
+ font-size: 1rem;
+ line-height: 1.6;
+}
+
+.steps {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+}
+
+.step {
+ background: var(--white);
+ padding: 1rem;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+}
+
+.step h3 {
+ color: var(--secondary-color);
+ font-size: 1.5rem;
+ margin-bottom: 0.5rem;
+}
+
+.cta {
+ text-align: center;
+ padding: 2rem;
+ background: var(--secondary-color);
+ color: var(--white);
+ border-radius: 8px;
+}
+
+.cta h2 {
+ margin: 0;
+ font-size: 2rem;
+}
+
+.cta p {
+ font-size: 1.2rem;
+ margin: 0.5rem 0 0;
+}
+
+footer {
+ text-align: center;
+ padding: 1rem;
+ background: var(--primary-color);
+ color: var(--white);
+ margin-top: 2rem;
+}
+
+@media (max-width: 768px) {
+ header.hero h1 {
+ font-size: 2rem;
+ }
+
+ header.hero p {
+ font-size: 1rem;
+ }
+
+ .steps {
+ grid-template-columns: 1fr;
+ }
+
+ .cta h2 {
+ font-size: 1.5rem;
+ }
+
+ .cta p {
+ font-size: 1rem;
+ }
+}
\ No newline at end of file