commit d0b38923033d6b997ec8bb0a9f34686c6a2962db
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 23:03:34 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..f2e9974
--- /dev/null
+++ b/body.html
@@ -0,0 +1,36 @@
+<header class="top-bar">
+ <nav>
+ <ul>
+ <li><a href="#about">About</a></li>
+ <li><a href="#contact">Contact</a></li>
+ <li><a href="#blog">Blog</a></li>
+ <li><a href="#resume">Resume</a></li>
+ </ul>
+ </nav>
+</header>
+
+<main>
+ <section id="about" class="section">
+ <h1>About Me</h1>
+ <p>Welcome to my personal website! I'm Alexis, a passionate web developer with a love for creating beautiful, functional websites. Here, you'll find information about my skills, projects, and thoughts on web development.</p>
+ </section>
+
+ <section id="contact" class="section">
+ <h1>Contact</h1>
+ <p>Feel free to reach out to me for any inquiries or collaborations. You can email me at <a href="mailto:alexis@example.com">alexis@example.com</a> or connect with me on social media.</p>
+ </section>
+
+ <section id="blog" class="section">
+ <h1>Blog</h1>
+ <p>Check out my latest blog posts where I share insights, tutorials, and updates on my projects. Stay tuned for new content!</p>
+ </section>
+
+ <section id="resume" class="section">
+ <h1>Resume</h1>
+ <p>Download my resume to learn more about my professional experience and skills. <a href="/resume.pdf">Download Resume</a></p>
+ </section>
+</main>
+
+<footer>
+ <p>Thank you for visiting my website. I hope you found it informative and inspiring.</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..779c719
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://alexis.scroll.pub
+metaTags
+editButton /edit.html
+title Alexis - Personal Website
+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..a37fe18
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "35ce9705-6405-4a8b-a963-455c7d8030fb",
+ "object": "chat.completion",
+ "created": 1735340602,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nalexis.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://alexis.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Alexis - Personal Website\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"top-bar\">\n <nav>\n <ul>\n <li><a href=\"#about\">About</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n <li><a href=\"#blog\">Blog</a></li>\n <li><a href=\"#resume\">Resume</a></li>\n </ul>\n </nav>\n</header>\n\n<main>\n <section id=\"about\" class=\"section\">\n <h1>About Me</h1>\n <p>Welcome to my personal website! I'm Alexis, a passionate web developer with a love for creating beautiful, functional websites. Here, you'll find information about my skills, projects, and thoughts on web development.</p>\n </section>\n\n <section id=\"contact\" class=\"section\">\n <h1>Contact</h1>\n <p>Feel free to reach out to me for any inquiries or collaborations. You can email me at <a href=\"mailto:alexis@example.com\">alexis@example.com</a> or connect with me on social media.</p>\n </section>\n\n <section id=\"blog\" class=\"section\">\n <h1>Blog</h1>\n <p>Check out my latest blog posts where I share insights, tutorials, and updates on my projects. Stay tuned for new content!</p>\n </section>\n\n <section id=\"resume\" class=\"section\">\n <h1>Resume</h1>\n <p>Download my resume to learn more about my professional experience and skills. <a href=\"/resume.pdf\">Download Resume</a></p>\n </section>\n</main>\n\n<footer>\n <p>Thank you for visiting my website. I hope you found it informative and inspiring.</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #3498db;\n --secondary-color: #2ecc71;\n --background-color: #f4f4f4;\n --text-color: #333;\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.top-bar {\n background-color: var(--primary-color);\n padding: 1rem;\n text-align: center;\n}\n\n.top-bar nav ul {\n list-style: none;\n padding: 0;\n margin: 0;\n display: flex;\n justify-content: center;\n}\n\n.top-bar nav ul li {\n margin: 0 1rem;\n}\n\n.top-bar nav ul li a {\n color: white;\n text-decoration: none;\n font-weight: bold;\n transition: color 0.3s ease;\n}\n\n.top-bar nav ul li a:hover {\n color: var(--secondary-color);\n}\n\n.section {\n padding: 2rem;\n margin: 1rem 0;\n background-color: white;\n border-radius: 8px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\nh1 {\n color: var(--primary-color);\n margin-bottom: 1rem;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background-color: var(--primary-color);\n color: white;\n margin-top: 2rem;\n}\n\n@media (max-width: 768px) {\n .top-bar nav ul {\n flex-direction: column;\n }\n\n .top-bar nav ul li {\n margin: 0.5rem 0;\n }\n\n .section {\n padding: 1rem;\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": 256,
+ "completion_tokens": 941,
+ "total_tokens": 1197,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 256
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..fc9241e
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# alexis.scroll.pub
+Website generated by DeepSeek from prompt: I want to create a personal website with a top bar that has pages for about, contact, blog and resume
\ 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..834d0b7
--- /dev/null
+++ b/style.css
@@ -0,0 +1,80 @@
+:root {
+ --primary-color: #3498db;
+ --secondary-color: #2ecc71;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --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;
+}
+
+.top-bar {
+ background-color: var(--primary-color);
+ padding: 1rem;
+ text-align: center;
+}
+
+.top-bar nav ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ display: flex;
+ justify-content: center;
+}
+
+.top-bar nav ul li {
+ margin: 0 1rem;
+}
+
+.top-bar nav ul li a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ transition: color 0.3s ease;
+}
+
+.top-bar nav ul li a:hover {
+ color: var(--secondary-color);
+}
+
+.section {
+ padding: 2rem;
+ margin: 1rem 0;
+ background-color: white;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+h1 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+}
+
+footer {
+ text-align: center;
+ padding: 1rem;
+ background-color: var(--primary-color);
+ color: white;
+ margin-top: 2rem;
+}
+
+@media (max-width: 768px) {
+ .top-bar nav ul {
+ flex-direction: column;
+ }
+
+ .top-bar nav ul li {
+ margin: 0.5rem 0;
+ }
+
+ .section {
+ padding: 1rem;
+ }
+}
\ No newline at end of file