commit fd8aca8666fd021e66fc9053c518de5f9767bc20
Author: root <root@hub.scroll.pub> Date: 2024-12-28 10:08:11 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..d2c3403 --- /dev/null +++ b/body.html @@ -0,0 +1,46 @@ +<header> + <h1>Pasión Scroll</h1> + <p>Ignite the flame of intimacy with your passionate Spanish lover</p> +</header> + +<main> + <section class="hero"> + <div class="hero-content"> + <h2>Discover the Art of Spanish Romance</h2> + <p>Explore our curated collection of intimate moments and romantic gestures to deepen your connection.</p> + <a href="#gallery" class="cta-button">Begin Your Journey</a> + </div> + </section> + + <section id="gallery" class="gallery"> + <h2>Moments of Passion</h2> + <div class="gallery-grid"> + <div class="gallery-item"> + <img src="images/candle-dinner.jpg" alt="Romantic candlelit dinner"> + <p>Candlelit Dinners</p> + </div> + <div class="gallery-item"> + <img src="images/flamenco-dance.jpg" alt="Couple dancing flamenco"> + <p>Flamenco Nights</p> + </div> + <div class="gallery-item"> + <img src="images/sunset-beach.jpg" alt="Couple walking on beach at sunset"> + <p>Sunset Strolls</p> + </div> + </div> + </section> + + <section class="tips"> + <h2>Romantic Tips</h2> + <ul> + <li>Learn a few Spanish love phrases</li> + <li>Plan a surprise flamenco night</li> + <li>Cook a traditional Spanish meal together</li> + <li>Write a love letter in Spanish</li> + </ul> + </section> +</main> + +<footer> + <p>Let your love story unfold with Pasión Scroll</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..99472dd --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://pasionescroll.scroll.pub +metaTags +editButton /edit.html +title Pasión Scroll - Build Intimacy with Your Spanish Lover +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..73d4163 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "64414a05-d19d-4872-be71-c072265f8904", + "object": "chat.completion", + "created": 1735380471, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\npasionescroll.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://pasionescroll.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Pasión Scroll - Build Intimacy with Your Spanish Lover\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Pasión Scroll</h1>\n <p>Ignite the flame of intimacy with your passionate Spanish lover</p>\n</header>\n\n<main>\n <section class=\"hero\">\n <div class=\"hero-content\">\n <h2>Discover the Art of Spanish Romance</h2>\n <p>Explore our curated collection of intimate moments and romantic gestures to deepen your connection.</p>\n <a href=\"#gallery\" class=\"cta-button\">Begin Your Journey</a>\n </div>\n </section>\n\n <section id=\"gallery\" class=\"gallery\">\n <h2>Moments of Passion</h2>\n <div class=\"gallery-grid\">\n <div class=\"gallery-item\">\n <img src=\"images/candle-dinner.jpg\" alt=\"Romantic candlelit dinner\">\n <p>Candlelit Dinners</p>\n </div>\n <div class=\"gallery-item\">\n <img src=\"images/flamenco-dance.jpg\" alt=\"Couple dancing flamenco\">\n <p>Flamenco Nights</p>\n </div>\n <div class=\"gallery-item\">\n <img src=\"images/sunset-beach.jpg\" alt=\"Couple walking on beach at sunset\">\n <p>Sunset Strolls</p>\n </div>\n </div>\n </section>\n\n <section class=\"tips\">\n <h2>Romantic Tips</h2>\n <ul>\n <li>Learn a few Spanish love phrases</li>\n <li>Plan a surprise flamenco night</li>\n <li>Cook a traditional Spanish meal together</li>\n <li>Write a love letter in Spanish</li>\n </ul>\n </section>\n</main>\n\n<footer>\n <p>Let your love story unfold with Pasión Scroll</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #e63946;\n --secondary-color: #f1faee;\n --accent-color: #a8dadc;\n --dark-color: #1d3557;\n --light-color: #ffffff;\n}\n\nbody {\n font-family: 'Georgia', serif;\n line-height: 1.6;\n color: var(--dark-color);\n margin: 0;\n padding: 0;\n}\n\nheader {\n background: var(--primary-color);\n color: var(--light-color);\n padding: 2rem;\n text-align: center;\n}\n\nh1 {\n font-size: 2.5rem;\n margin-bottom: 0.5rem;\n}\n\n.hero {\n background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(29, 53, 87, 0.7)),\n url('images/hero-bg.jpg') center/cover;\n height: 60vh;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--light-color);\n text-align: center;\n}\n\n.hero-content {\n max-width: 800px;\n padding: 1rem;\n}\n\n.cta-button {\n display: inline-block;\n background: var(--primary-color);\n color: var(--light-color);\n padding: 0.8rem 2rem;\n border-radius: 25px;\n text-decoration: none;\n margin-top: 1rem;\n transition: background 0.3s ease;\n}\n\n.cta-button:hover {\n background: #c53030;\n}\n\n.gallery {\n padding: 2rem;\n background: var(--secondary-color);\n}\n\n.gallery-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1rem;\n margin-top: 1rem;\n}\n\n.gallery-item {\n background: var(--light-color);\n padding: 1rem;\n border-radius: 10px;\n box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\n text-align: center;\n}\n\n.gallery-item img {\n width: 100%;\n height: 200px;\n object-fit: cover;\n border-radius: 5px;\n}\n\n.tips {\n padding: 2rem;\n background: var(--accent-color);\n}\n\n.tips ul {\n list-style: none;\n padding: 0;\n max-width: 600px;\n margin: 1rem auto;\n}\n\n.tips li {\n background: var(--light-color);\n margin: 0.5rem 0;\n padding: 0.8rem;\n border-radius: 5px;\n}\n\nfooter {\n background: var(--dark-color);\n color: var(--light-color);\n text-align: center;\n padding: 1rem;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2rem;\n }\n\n .hero {\n height: 50vh;\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 hover effect to gallery items\nconst galleryItems = document.querySelectorAll('.gallery-item');\ngalleryItems.forEach(item => {\n item.addEventListener('mouseenter', () => {\n item.style.transform = 'translateY(-5px)';\n item.style.boxShadow = '0 5px 15px rgba(0, 0, 0, 0.2)';\n });\n item.addEventListener('mouseleave', () => {\n item.style.transform = 'translateY(0)';\n item.style.boxShadow = '0 2px 5px rgba(0, 0, 0, 0.1)';\n });\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 257, + "completion_tokens": 1368, + "total_tokens": 1625, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 257 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..4c9ec13 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# pasionescroll.scroll.pub +Website generated by DeepSeek from prompt: I want a website that helps me build intimacy with my passionate Spanish lover. It should have some images. Be creative. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..8ec4ae0 --- /dev/null +++ b/script.js @@ -0,0 +1,22 @@ +// 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 hover effect to gallery items +const galleryItems = document.querySelectorAll('.gallery-item'); +galleryItems.forEach(item => { + item.addEventListener('mouseenter', () => { + item.style.transform = 'translateY(-5px)'; + item.style.boxShadow = '0 5px 15px rgba(0, 0, 0, 0.2)'; + }); + item.addEventListener('mouseleave', () => { + item.style.transform = 'translateY(0)'; + item.style.boxShadow = '0 2px 5px rgba(0, 0, 0, 0.1)'; + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..68a54b2 --- /dev/null +++ b/style.css @@ -0,0 +1,121 @@ +:root { + --primary-color: #e63946; + --secondary-color: #f1faee; + --accent-color: #a8dadc; + --dark-color: #1d3557; + --light-color: #ffffff; +} + +body { + font-family: 'Georgia', serif; + line-height: 1.6; + color: var(--dark-color); + margin: 0; + padding: 0; +} + +header { + background: var(--primary-color); + color: var(--light-color); + padding: 2rem; + text-align: center; +} + +h1 { + font-size: 2.5rem; + margin-bottom: 0.5rem; +} + +.hero { + background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(29, 53, 87, 0.7)), + url('images/hero-bg.jpg') center/cover; + height: 60vh; + display: flex; + align-items: center; + justify-content: center; + color: var(--light-color); + text-align: center; +} + +.hero-content { + max-width: 800px; + padding: 1rem; +} + +.cta-button { + display: inline-block; + background: var(--primary-color); + color: var(--light-color); + padding: 0.8rem 2rem; + border-radius: 25px; + text-decoration: none; + margin-top: 1rem; + transition: background 0.3s ease; +} + +.cta-button:hover { + background: #c53030; +} + +.gallery { + padding: 2rem; + background: var(--secondary-color); +} + +.gallery-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 1rem; + margin-top: 1rem; +} + +.gallery-item { + background: var(--light-color); + padding: 1rem; + border-radius: 10px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); + text-align: center; +} + +.gallery-item img { + width: 100%; + height: 200px; + object-fit: cover; + border-radius: 5px; +} + +.tips { + padding: 2rem; + background: var(--accent-color); +} + +.tips ul { + list-style: none; + padding: 0; + max-width: 600px; + margin: 1rem auto; +} + +.tips li { + background: var(--light-color); + margin: 0.5rem 0; + padding: 0.8rem; + border-radius: 5px; +} + +footer { + background: var(--dark-color); + color: var(--light-color); + text-align: center; + padding: 1rem; +} + +@media (max-width: 768px) { + h1 { + font-size: 2rem; + } + + .hero { + height: 50vh; + } +} \ No newline at end of file