commit c9998b4f72ae01ed71f36367720388fda2c1e675
Author: root <root@hub.scroll.pub>
Date: 2024-12-28 02:04:37 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..5fed969
--- /dev/null
+++ b/body.html
@@ -0,0 +1,42 @@
+<header>
+ <nav>
+ <a href="/">Home</a>
+ <a href="/portfolio">Portfolio</a>
+ <a href="/about">About</a>
+ </nav>
+ <h1>Fused Artistry</h1>
+ <p>Unique Glass Creations by [Artist Name]</p>
+</header>
+
+<main>
+ <section id="featured">
+ <h2>Featured Piece</h2>
+ <div class="glass-art">
+ <img src="/images/featured.jpg" alt="Featured Glass Art Piece">
+ <p class="description">[Description of featured piece]</p>
+ </div>
+ </section>
+
+ <section id="portfolio-preview">
+ <h2>Recent Work</h2>
+ <div class="gallery">
+ <div class="art-item">
+ <img src="/images/piece1.jpg" alt="Glass Art Piece 1">
+ <p class="title">[Piece Title 1]</p>
+ </div>
+ <div class="art-item">
+ <img src="/images/piece2.jpg" alt="Glass Art Piece 2">
+ <p class="title">[Piece Title 2]</p>
+ </div>
+ <div class="art-item">
+ <img src="/images/piece3.jpg" alt="Glass Art Piece 3">
+ <p class="title">[Piece Title 3]</p>
+ </div>
+ </div>
+ <a href="/portfolio" class="btn">View Full Portfolio</a>
+ </section>
+</main>
+
+<footer>
+ <p>Contact: [email] | Follow on [social media]</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..714fedc
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://fusedartistry.scroll.pub
+metaTags
+editButton /edit.html
+title Fused Artistry | Glass Art by [Artist Name]
+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..289571b
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "9ed68352-f829-49cf-9912-066c8c9719ff",
+ "object": "chat.completion",
+ "created": 1735351463,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nfusedartistry.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://fusedartistry.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Fused Artistry | Glass Art by [Artist Name]\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav>\n <a href=\"/\">Home</a>\n <a href=\"/portfolio\">Portfolio</a>\n <a href=\"/about\">About</a>\n </nav>\n <h1>Fused Artistry</h1>\n <p>Unique Glass Creations by [Artist Name]</p>\n</header>\n\n<main>\n <section id=\"featured\">\n <h2>Featured Piece</h2>\n <div class=\"glass-art\">\n <img src=\"/images/featured.jpg\" alt=\"Featured Glass Art Piece\">\n <p class=\"description\">[Description of featured piece]</p>\n </div>\n </section>\n\n <section id=\"portfolio-preview\">\n <h2>Recent Work</h2>\n <div class=\"gallery\">\n <div class=\"art-item\">\n <img src=\"/images/piece1.jpg\" alt=\"Glass Art Piece 1\">\n <p class=\"title\">[Piece Title 1]</p>\n </div>\n <div class=\"art-item\">\n <img src=\"/images/piece2.jpg\" alt=\"Glass Art Piece 2\">\n <p class=\"title\">[Piece Title 2]</p>\n </div>\n <div class=\"art-item\">\n <img src=\"/images/piece3.jpg\" alt=\"Glass Art Piece 3\">\n <p class=\"title\">[Piece Title 3]</p>\n </div>\n </div>\n <a href=\"/portfolio\" class=\"btn\">View Full Portfolio</a>\n </section>\n</main>\n\n<footer>\n <p>Contact: [email] | Follow on [social media]</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #f4a261;\n --text-color: #333;\n --bg-color: #f8f8f8;\n}\n\nbody {\n font-family: 'Georgia', serif;\n color: var(--text-color);\n background-color: var(--bg-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\nheader {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nnav {\n display: flex;\n justify-content: center;\n gap: 1rem;\n margin-bottom: 1rem;\n}\n\nnav a {\n color: white;\n text-decoration: none;\n font-weight: bold;\n}\n\nh1 {\n font-size: 2.5rem;\n margin: 0.5rem 0;\n}\n\n#featured {\n padding: 2rem;\n text-align: center;\n}\n\n.glass-art {\n max-width: 800px;\n margin: 0 auto;\n}\n\n.glass-art img {\n width: 100%;\n height: auto;\n border-radius: 10px;\n box-shadow: 0 4px 8px rgba(0,0,0,0.1);\n}\n\n.description {\n font-style: italic;\n margin-top: 1rem;\n}\n\n#portfolio-preview {\n padding: 2rem;\n text-align: center;\n}\n\n.gallery {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1rem;\n margin: 2rem 0;\n}\n\n.art-item img {\n width: 100%;\n height: 200px;\n object-fit: cover;\n border-radius: 5px;\n transition: transform 0.3s ease;\n}\n\n.art-item img:hover {\n transform: scale(1.05);\n}\n\n.btn {\n display: inline-block;\n padding: 0.8rem 1.5rem;\n background-color: var(--primary-color);\n color: white;\n text-decoration: none;\n border-radius: 5px;\n transition: background-color 0.3s ease;\n}\n\n.btn:hover {\n background-color: var(--secondary-color);\n}\n\nfooter {\n background-color: var(--text-color);\n color: white;\n text-align: center;\n padding: 1rem;\n margin-top: 2rem;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2rem;\n }\n \n .gallery {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\n// Add any interactive functionality here if needed\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 292,
+ "completion_tokens": 1057,
+ "total_tokens": 1349,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 292
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..91882a4
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# fusedartistry.scroll.pub
+Website generated by DeepSeek from prompt: I need a website for a fused glass artist. She has a portfolio of glasswork she has done and would like to show it as well as a featured glass piece on the home page and an about me page with a photo of her and a marketing blurb about her story becoming an artist.
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..684d949
--- /dev/null
+++ b/script.js
@@ -0,0 +1 @@
+// Add any interactive functionality here if needed
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..82bf032
--- /dev/null
+++ b/style.css
@@ -0,0 +1,118 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #f4a261;
+ --text-color: #333;
+ --bg-color: #f8f8f8;
+}
+
+body {
+ font-family: 'Georgia', serif;
+ color: var(--text-color);
+ background-color: var(--bg-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+}
+
+header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ text-align: center;
+}
+
+nav {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-bottom: 1rem;
+}
+
+nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+}
+
+h1 {
+ font-size: 2.5rem;
+ margin: 0.5rem 0;
+}
+
+#featured {
+ padding: 2rem;
+ text-align: center;
+}
+
+.glass-art {
+ max-width: 800px;
+ margin: 0 auto;
+}
+
+.glass-art img {
+ width: 100%;
+ height: auto;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
+}
+
+.description {
+ font-style: italic;
+ margin-top: 1rem;
+}
+
+#portfolio-preview {
+ padding: 2rem;
+ text-align: center;
+}
+
+.gallery {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ margin: 2rem 0;
+}
+
+.art-item img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ border-radius: 5px;
+ transition: transform 0.3s ease;
+}
+
+.art-item img:hover {
+ transform: scale(1.05);
+}
+
+.btn {
+ display: inline-block;
+ padding: 0.8rem 1.5rem;
+ background-color: var(--primary-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 5px;
+ transition: background-color 0.3s ease;
+}
+
+.btn:hover {
+ background-color: var(--secondary-color);
+}
+
+footer {
+ background-color: var(--text-color);
+ color: white;
+ text-align: center;
+ padding: 1rem;
+ margin-top: 2rem;
+}
+
+@media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .gallery {
+ grid-template-columns: 1fr;
+ }
+}
\ No newline at end of file