commit 9634c093809116543baf271db18a31785397b89b
Author: root <root@hub.scroll.pub>
Date: 2024-12-28 15:03:42 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..11845b8
--- /dev/null
+++ b/body.html
@@ -0,0 +1,41 @@
+<header class="hero">
+ <div class="hero-content">
+ <h1>Help Me Graduate</h1>
+ <p>Your comprehensive guide to academic success and graduation</p>
+ <a href="#services" class="cta-button">Explore Services</a>
+ </div>
+</header>
+
+<section id="services" class="services-section">
+ <h2>Our Services</h2>
+ <div class="service-cards">
+ <div class="card">
+ <h3>Study Resources</h3>
+ <p>Access curated materials for your courses</p>
+ </div>
+ <div class="card">
+ <h3>Time Management</h3>
+ <p>Learn effective scheduling techniques</p>
+ </div>
+ <div class="card">
+ <h3>Exam Prep</h3>
+ <p>Master test-taking strategies</p>
+ </div>
+ </div>
+</section>
+
+<section class="testimonial-section">
+ <h2>Success Stories</h2>
+ <div class="testimonial">
+ <blockquote>"This website helped me organize my studies and graduate on time!"</blockquote>
+ <cite>- Sarah, Computer Science Graduate</cite>
+ </div>
+</section>
+
+<footer>
+ <nav>
+ <a href="#services">Services</a>
+ <a href="#about">About</a>
+ <a href="#contact">Contact</a>
+ </nav>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..3780178
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://graduateme.scroll.pub
+metaTags
+editButton /edit.html
+title Help Me Graduate - Your Path to Success
+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..99e5e63
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "320e3f96-e860-4096-a7d6-3c32228686e7",
+ "object": "chat.completion",
+ "created": 1735398203,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ngraduateme.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://graduateme.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Help Me Graduate - Your Path to Success\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <div class=\"hero-content\">\n <h1>Help Me Graduate</h1>\n <p>Your comprehensive guide to academic success and graduation</p>\n <a href=\"#services\" class=\"cta-button\">Explore Services</a>\n </div>\n</header>\n\n<section id=\"services\" class=\"services-section\">\n <h2>Our Services</h2>\n <div class=\"service-cards\">\n <div class=\"card\">\n <h3>Study Resources</h3>\n <p>Access curated materials for your courses</p>\n </div>\n <div class=\"card\">\n <h3>Time Management</h3>\n <p>Learn effective scheduling techniques</p>\n </div>\n <div class=\"card\">\n <h3>Exam Prep</h3>\n <p>Master test-taking strategies</p>\n </div>\n </div>\n</section>\n\n<section class=\"testimonial-section\">\n <h2>Success Stories</h2>\n <div class=\"testimonial\">\n <blockquote>\"This website helped me organize my studies and graduate on time!\"</blockquote>\n <cite>- Sarah, Computer Science Graduate</cite>\n </div>\n</section>\n\n<footer>\n <nav>\n <a href=\"#services\">Services</a>\n <a href=\"#about\">About</a>\n <a href=\"#contact\">Contact</a>\n </nav>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #50e3c2;\n --text-color: #333;\n --background-color: #f5f5f5;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Segoe UI', sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\n.hero {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: white;\n padding: 4rem 1rem;\n text-align: center;\n min-height: 60vh;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.hero-content h1 {\n font-size: 3rem;\n margin-bottom: 1rem;\n animation: fadeIn 1s ease-in;\n}\n\n.cta-button {\n display: inline-block;\n padding: 1rem 2rem;\n background: white;\n color: var(--primary-color);\n text-decoration: none;\n border-radius: 2rem;\n margin-top: 2rem;\n transition: transform 0.3s ease;\n}\n\n.cta-button:hover {\n transform: translateY(-3px);\n}\n\n.services-section {\n padding: 4rem 1rem;\n text-align: center;\n}\n\n.service-cards {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n}\n\n.card {\n background: white;\n padding: 2rem;\n border-radius: 1rem;\n box-shadow: 0 2px 10px rgba(0,0,0,0.1);\n transition: transform 0.3s ease;\n}\n\n.card:hover {\n transform: translateY(-5px);\n}\n\n.testimonial-section {\n background: var(--primary-color);\n color: white;\n padding: 4rem 1rem;\n text-align: center;\n}\n\n.testimonial blockquote {\n font-style: italic;\n margin: 1rem auto;\n max-width: 600px;\n}\n\nfooter {\n background: var(--text-color);\n color: white;\n padding: 2rem 1rem;\n text-align: center;\n}\n\nfooter nav {\n display: flex;\n justify-content: center;\n gap: 2rem;\n}\n\nfooter a {\n color: white;\n text-decoration: none;\n}\n\n@keyframes fadeIn {\n from {\n opacity: 0;\n transform: translateY(20px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n@media (max-width: 768px) {\n .hero-content h1 {\n font-size: 2rem;\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 animation to cards when they come into view\nconst cards = document.querySelectorAll('.card');\n\nconst observer = new IntersectionObserver(entries => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.classList.add('visible');\n observer.unobserve(entry.target);\n }\n });\n}, {\n threshold: 0.1\n});\n\ncards.forEach(card => {\n observer.observe(card);\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 241,
+ "completion_tokens": 1211,
+ "total_tokens": 1452,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 241
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..217897d
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# graduateme.scroll.pub
+Website generated by DeepSeek from prompt: 请帮我做一个网站 帮我毕业
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..5a43b4b
--- /dev/null
+++ b/script.js
@@ -0,0 +1,27 @@
+// 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 animation to cards when they come into view
+const cards = document.querySelectorAll('.card');
+
+const observer = new IntersectionObserver(entries => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.classList.add('visible');
+ observer.unobserve(entry.target);
+ }
+ });
+}, {
+ threshold: 0.1
+});
+
+cards.forEach(card => {
+ observer.observe(card);
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..0a5cc01
--- /dev/null
+++ b/style.css
@@ -0,0 +1,127 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #50e3c2;
+ --text-color: #333;
+ --background-color: #f5f5f5;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+}
+
+.hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 4rem 1rem;
+ text-align: center;
+ min-height: 60vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-in;
+}
+
+.cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: white;
+ color: var(--primary-color);
+ text-decoration: none;
+ border-radius: 2rem;
+ margin-top: 2rem;
+ transition: transform 0.3s ease;
+}
+
+.cta-button:hover {
+ transform: translateY(-3px);
+}
+
+.services-section {
+ padding: 4rem 1rem;
+ text-align: center;
+}
+
+.service-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+}
+
+.card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+}
+
+.card:hover {
+ transform: translateY(-5px);
+}
+
+.testimonial-section {
+ background: var(--primary-color);
+ color: white;
+ padding: 4rem 1rem;
+ text-align: center;
+}
+
+.testimonial blockquote {
+ font-style: italic;
+ margin: 1rem auto;
+ max-width: 600px;
+}
+
+footer {
+ background: var(--text-color);
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+}
+
+footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+}
+
+footer a {
+ color: white;
+ text-decoration: none;
+}
+
+@keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+
+@media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .service-cards {
+ grid-template-columns: 1fr;
+ }
+}
\ No newline at end of file