commit 4ad88a9ea37f4c549c01817a8e4578c0b47cba66
Author: root <root@hub.scroll.pub> Date: 2024-12-28 10:15:22 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..ea917e6 --- /dev/null +++ b/body.html @@ -0,0 +1,38 @@ +<header class="hero"> + <div class="hero-content"> + <h1>Amor Connection</h1> + <p>Strengthen your bond with your Spanish lover through shared experiences and cultural understanding.</p> + <a href="#activities" class="cta-button">Explore Activities</a> + </div> +</header> + +<section id="activities" class="activities-section"> + <h2>Activities to Build Your Bond</h2> + <div class="activity-grid"> + <div class="activity-card"> + <img src="images/cooking.jpg" alt="Cooking together"> + <h3>Cook Spanish Dishes</h3> + <p>Learn to make paella, tapas, and other traditional Spanish meals together.</p> + </div> + <div class="activity-card"> + <img src="images/dancing.jpg" alt="Dancing together"> + <h3>Learn Flamenco</h3> + <p>Take dance lessons and feel the passion of Spanish music.</p> + </div> + <div class="activity-card"> + <img src="images/travel.jpg" alt="Traveling together"> + <h3>Explore Spain</h3> + <p>Plan a trip to discover the beauty of Spanish culture and landscapes.</p> + </div> + </div> +</section> + +<section class="quote-section"> + <blockquote> + "El amor no es mirarse el uno al otro, es mirar juntos en la misma dirección." - Antoine de Saint-Exupéry + </blockquote> +</section> + +<footer> + <p>Amor Connection - Building bridges of love and understanding</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..3f22beb --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://amor.scroll.pub +metaTags +editButton /edit.html +title Amor Connection - Build a Stronger Bond 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..8223e41 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "8e50da61-4beb-4e76-ade0-db066efe78ac", + "object": "chat.completion", + "created": 1735380903, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\namor.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://amor.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Amor Connection - Build a Stronger Bond with Your Spanish Lover\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <div class=\"hero-content\">\n <h1>Amor Connection</h1>\n <p>Strengthen your bond with your Spanish lover through shared experiences and cultural understanding.</p>\n <a href=\"#activities\" class=\"cta-button\">Explore Activities</a>\n </div>\n</header>\n\n<section id=\"activities\" class=\"activities-section\">\n <h2>Activities to Build Your Bond</h2>\n <div class=\"activity-grid\">\n <div class=\"activity-card\">\n <img src=\"images/cooking.jpg\" alt=\"Cooking together\">\n <h3>Cook Spanish Dishes</h3>\n <p>Learn to make paella, tapas, and other traditional Spanish meals together.</p>\n </div>\n <div class=\"activity-card\">\n <img src=\"images/dancing.jpg\" alt=\"Dancing together\">\n <h3>Learn Flamenco</h3>\n <p>Take dance lessons and feel the passion of Spanish music.</p>\n </div>\n <div class=\"activity-card\">\n <img src=\"images/travel.jpg\" alt=\"Traveling together\">\n <h3>Explore Spain</h3>\n <p>Plan a trip to discover the beauty of Spanish culture and landscapes.</p>\n </div>\n </div>\n</section>\n\n<section class=\"quote-section\">\n <blockquote>\n \"El amor no es mirarse el uno al otro, es mirar juntos en la misma dirección.\" - Antoine de Saint-Exupéry\n </blockquote>\n</section>\n\n<footer>\n <p>Amor Connection - Building bridges of love and understanding</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: 'Segoe UI', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n color: var(--dark-color);\n background-color: var(--secondary-color);\n}\n\n.hero {\n background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(29, 53, 87, 0.7)), url('images/hero.jpg');\n background-size: cover;\n background-position: center;\n height: 100vh;\n display: flex;\n align-items: center;\n justify-content: center;\n text-align: center;\n color: var(--light-color);\n}\n\n.hero-content {\n max-width: 800px;\n padding: 20px;\n}\n\n.hero h1 {\n font-size: 4rem;\n margin-bottom: 20px;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);\n}\n\n.cta-button {\n display: inline-block;\n padding: 15px 30px;\n background-color: var(--primary-color);\n color: var(--light-color);\n text-decoration: none;\n border-radius: 5px;\n transition: background-color 0.3s ease;\n}\n\n.cta-button:hover {\n background-color: #c5303a;\n}\n\n.activities-section {\n padding: 60px 20px;\n background-color: var(--light-color);\n}\n\n.activity-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 30px;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.activity-card {\n background-color: var(--secondary-color);\n border-radius: 10px;\n overflow: hidden;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n transition: transform 0.3s ease;\n}\n\n.activity-card:hover {\n transform: translateY(-10px);\n}\n\n.activity-card img {\n width: 100%;\n height: 200px;\n object-fit: cover;\n}\n\n.activity-card h3 {\n margin: 20px;\n color: var(--dark-color);\n}\n\n.activity-card p {\n margin: 0 20px 20px;\n color: var(--dark-color);\n}\n\n.quote-section {\n background-color: var(--accent-color);\n padding: 40px 20px;\n text-align: center;\n}\n\nblockquote {\n font-style: italic;\n font-size: 1.5rem;\n max-width: 800px;\n margin: 0 auto;\n color: var(--dark-color);\n}\n\nfooter {\n background-color: var(--dark-color);\n color: var(--light-color);\n text-align: center;\n padding: 20px;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 3rem;\n }\n \n .activity-grid {\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 a simple fade-in animation for sections\nconst sections = document.querySelectorAll('section');\n\nconst observer = new IntersectionObserver(entries => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.classList.add('visible');\n }\n });\n}, {\n threshold: 0.1\n});\n\nsections.forEach(section => {\n observer.observe(section);\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 257, + "completion_tokens": 1326, + "total_tokens": 1583, + "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..e4b9a16 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# amor.scroll.pub +Website generated by DeepSeek from prompt: I want a website that helps me build bond with my Spanish lover. It should have some detailed images. Be creative. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..5e88db8 --- /dev/null +++ b/script.js @@ -0,0 +1,26 @@ +// 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 a simple fade-in animation for sections +const sections = document.querySelectorAll('section'); + +const observer = new IntersectionObserver(entries => { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.classList.add('visible'); + } + }); +}, { + threshold: 0.1 +}); + +sections.forEach(section => { + observer.observe(section); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..1c94953 --- /dev/null +++ b/style.css @@ -0,0 +1,125 @@ +:root { + --primary-color: #e63946; + --secondary-color: #f1faee; + --accent-color: #a8dadc; + --dark-color: #1d3557; + --light-color: #ffffff; +} + +body { + font-family: 'Segoe UI', sans-serif; + line-height: 1.6; + margin: 0; + padding: 0; + color: var(--dark-color); + background-color: var(--secondary-color); +} + +.hero { + background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(29, 53, 87, 0.7)), url('images/hero.jpg'); + background-size: cover; + background-position: center; + height: 100vh; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + color: var(--light-color); +} + +.hero-content { + max-width: 800px; + padding: 20px; +} + +.hero h1 { + font-size: 4rem; + margin-bottom: 20px; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); +} + +.cta-button { + display: inline-block; + padding: 15px 30px; + background-color: var(--primary-color); + color: var(--light-color); + text-decoration: none; + border-radius: 5px; + transition: background-color 0.3s ease; +} + +.cta-button:hover { + background-color: #c5303a; +} + +.activities-section { + padding: 60px 20px; + background-color: var(--light-color); +} + +.activity-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 30px; + max-width: 1200px; + margin: 0 auto; +} + +.activity-card { + background-color: var(--secondary-color); + border-radius: 10px; + overflow: hidden; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease; +} + +.activity-card:hover { + transform: translateY(-10px); +} + +.activity-card img { + width: 100%; + height: 200px; + object-fit: cover; +} + +.activity-card h3 { + margin: 20px; + color: var(--dark-color); +} + +.activity-card p { + margin: 0 20px 20px; + color: var(--dark-color); +} + +.quote-section { + background-color: var(--accent-color); + padding: 40px 20px; + text-align: center; +} + +blockquote { + font-style: italic; + font-size: 1.5rem; + max-width: 800px; + margin: 0 auto; + color: var(--dark-color); +} + +footer { + background-color: var(--dark-color); + color: var(--light-color); + text-align: center; + padding: 20px; +} + +@media (max-width: 768px) { + .hero h1 { + font-size: 3rem; + } + + .activity-grid { + grid-template-columns: 1fr; + } +} \ No newline at end of file