commit 9a0d890f85327ddeb21e58e75146b17d0f04555a
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 12:22:05 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..e9ba392
--- /dev/null
+++ b/body.html
@@ -0,0 +1,30 @@
+<header>
+ <h1>Who Are You?</h1>
+ <p>Discover the essence of your identity.</p>
+</header>
+
+<main>
+ <section class="intro">
+ <h2>Exploring Identity</h2>
+ <p>Identity is a complex and multifaceted concept. It encompasses who you are, what you believe, and how you see yourself in the world.</p>
+ </section>
+
+ <section class="questions">
+ <h2>Questions to Ponder</h2>
+ <ul>
+ <li>What defines you?</li>
+ <li>How do others perceive you?</li>
+ <li>What are your core values?</li>
+ <li>How do you want to be remembered?</li>
+ </ul>
+ </section>
+
+ <section class="reflection">
+ <h2>Reflect on Your Journey</h2>
+ <p>Take a moment to reflect on your experiences, relationships, and aspirations. Your identity is a continuous journey of self-discovery.</p>
+ </section>
+</main>
+
+<footer>
+ <p>Explore more about yourself and your place in the world.</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..d8f21b6
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://whoareyou.scroll.pub
+metaTags
+editButton /edit.html
+title Who Are You?
+style.css
+body.html
+script.js
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..5ff56a2
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# whoareyou.scroll.pub
+Website generated by DeepSeek from prompt: who are you
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..73aa4ed
--- /dev/null
+++ b/script.js
@@ -0,0 +1 @@
+// No JavaScript needed for this simple page
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..4ed5ab3
--- /dev/null
+++ b/style.css
@@ -0,0 +1,91 @@
+body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
+ color: #333;
+}
+
+header {
+ text-align: center;
+ padding: 2rem;
+ background: rgba(255, 255, 255, 0.8);
+ border-bottom: 1px solid #ddd;
+}
+
+header h1 {
+ font-size: 2.5rem;
+ margin: 0;
+ color: #444;
+}
+
+header p {
+ font-size: 1.2rem;
+ color: #666;
+}
+
+main {
+ padding: 2rem;
+}
+
+section {
+ margin-bottom: 2rem;
+ background: rgba(255, 255, 255, 0.9);
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+section h2 {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ color: #444;
+}
+
+section p {
+ font-size: 1.1rem;
+ color: #555;
+}
+
+section ul {
+ list-style-type: disc;
+ padding-left: 2rem;
+}
+
+section ul li {
+ margin-bottom: 0.5rem;
+ font-size: 1.1rem;
+ color: #555;
+}
+
+footer {
+ text-align: center;
+ padding: 1rem;
+ background: rgba(255, 255, 255, 0.8);
+ border-top: 1px solid #ddd;
+ margin-top: 2rem;
+}
+
+footer p {
+ font-size: 1rem;
+ color: #666;
+}
+
+@media (max-width: 768px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ section h2 {
+ font-size: 1.5rem;
+ }
+
+ section p, section ul li {
+ font-size: 1rem;
+ }
+}
\ No newline at end of file