commit ee8559a6c5dbe8d2ac622b4e110cb11fd29decdb
Author: root <root@hub.scroll.pub> Date: 2024-12-27 18:10:14 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..ae2f00e --- /dev/null +++ b/body.html @@ -0,0 +1,47 @@ +<header class="hero"> + <div class="container"> + <h1>LoanFlow</h1> + <p class="subtitle">A lightweight workflow engine for seamless loan processing</p> + <a href="#features" class="cta-button">Explore Features</a> + </div> +</header> + +<section id="features" class="features-section"> + <div class="container"> + <h2>Core Features</h2> + <div class="feature-grid"> + <div class="feature-card"> + <div class="icon">⚙️</div> + <h3>Workflow Automation</h3> + <p>Automate loan approval processes with customizable workflows</p> + </div> + <div class="feature-card"> + <div class="icon">🚀</div> + <h3>High Performance</h3> + <p>Built on NestJS for blazing fast processing speeds</p> + </div> + <div class="feature-card"> + <div class="icon">🔒</div> + <h3>Secure & Reliable</h3> + <p>Enterprise-grade security for sensitive financial data</p> + </div> + </div> + </div> +</section> + +<section class="cta-section"> + <div class="container"> + <h2>Ready to Streamline Your Loan Processes?</h2> + <a href="#contact" class="cta-button">Get Started</a> + </div> +</section> + +<footer> + <div class="container"> + <nav> + <a href="#features">Features</a> + <a href="#contact">Contact</a> + </nav> + <p>Simplifying loan workflows with cutting-edge technology</p> + </div> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..032c147 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://loanflow.scroll.pub +metaTags +editButton /edit.html +title LoanFlow - Lightweight Workflow Engine for Loan Processing +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..542c2d2 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "332f8fba-8d39-48ad-a16d-d5e865b64ad1", + "object": "chat.completion", + "created": 1735322998, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nloanflow.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://loanflow.scroll.pub\nmetaTags\neditButton /edit.html\ntitle LoanFlow - Lightweight Workflow Engine for Loan Processing\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <div class=\"container\">\n <h1>LoanFlow</h1>\n <p class=\"subtitle\">A lightweight workflow engine for seamless loan processing</p>\n <a href=\"#features\" class=\"cta-button\">Explore Features</a>\n </div>\n</header>\n\n<section id=\"features\" class=\"features-section\">\n <div class=\"container\">\n <h2>Core Features</h2>\n <div class=\"feature-grid\">\n <div class=\"feature-card\">\n <div class=\"icon\">⚙️</div>\n <h3>Workflow Automation</h3>\n <p>Automate loan approval processes with customizable workflows</p>\n </div>\n <div class=\"feature-card\">\n <div class=\"icon\">🚀</div>\n <h3>High Performance</h3>\n <p>Built on NestJS for blazing fast processing speeds</p>\n </div>\n <div class=\"feature-card\">\n <div class=\"icon\">🔒</div>\n <h3>Secure & Reliable</h3>\n <p>Enterprise-grade security for sensitive financial data</p>\n </div>\n </div>\n </div>\n</section>\n\n<section class=\"cta-section\">\n <div class=\"container\">\n <h2>Ready to Streamline Your Loan Processes?</h2>\n <a href=\"#contact\" class=\"cta-button\">Get Started</a>\n </div>\n</section>\n\n<footer>\n <div class=\"container\">\n <nav>\n <a href=\"#features\">Features</a>\n <a href=\"#contact\">Contact</a>\n </nav>\n <p>Simplifying loan workflows with cutting-edge technology</p>\n </div>\n</footer>\n---style.css---\n:root {\n --primary-color: #2563eb;\n --secondary-color: #1e40af;\n --background-color: #f8fafc;\n --text-color: #1e293b;\n --white: #ffffff;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: system-ui, -apple-system, sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\n.container {\n max-width: 1200px;\n margin: 0 auto;\n padding: 0 20px;\n}\n\n.hero {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n color: var(--white);\n padding: 100px 0;\n text-align: center;\n}\n\n.hero h1 {\n font-size: 3.5rem;\n margin-bottom: 1rem;\n}\n\n.subtitle {\n font-size: 1.25rem;\n margin-bottom: 2rem;\n}\n\n.cta-button {\n display: inline-block;\n padding: 12px 24px;\n background-color: var(--white);\n color: var(--primary-color);\n text-decoration: none;\n border-radius: 25px;\n font-weight: 600;\n transition: all 0.3s ease;\n}\n\n.cta-button:hover {\n background-color: var(--secondary-color);\n color: var(--white);\n}\n\n.features-section {\n padding: 80px 0;\n}\n\n.features-section h2 {\n text-align: center;\n margin-bottom: 40px;\n font-size: 2rem;\n}\n\n.feature-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 30px;\n}\n\n.feature-card {\n background: var(--white);\n padding: 30px;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n text-align: center;\n}\n\n.feature-card .icon {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n}\n\n.feature-card h3 {\n font-size: 1.5rem;\n margin-bottom: 1rem;\n}\n\n.cta-section {\n background: var(--primary-color);\n color: var(--white);\n padding: 60px 0;\n text-align: center;\n}\n\n.cta-section h2 {\n margin-bottom: 30px;\n font-size: 2rem;\n}\n\nfooter {\n background: var(--secondary-color);\n color: var(--white);\n padding: 40px 0;\n text-align: center;\n}\n\nfooter nav {\n margin-bottom: 20px;\n}\n\nfooter nav a {\n color: var(--white);\n text-decoration: none;\n margin: 0 15px;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2.5rem;\n }\n \n .feature-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 any additional JavaScript functionality here\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 248, + "completion_tokens": 1232, + "total_tokens": 1480, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 248 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..7b5fa2c --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# loanflow.scroll.pub +Website generated by DeepSeek from prompt: A light workflow engine written in nestjs, able to execute loan workflow \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..2831f4a --- /dev/null +++ b/script.js @@ -0,0 +1,11 @@ +// 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 any additional JavaScript functionality here \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..a5f2607 --- /dev/null +++ b/style.css @@ -0,0 +1,132 @@ +:root { + --primary-color: #2563eb; + --secondary-color: #1e40af; + --background-color: #f8fafc; + --text-color: #1e293b; + --white: #ffffff; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: system-ui, -apple-system, sans-serif; + line-height: 1.6; + color: var(--text-color); + background-color: var(--background-color); +} + +.container { + max-width: 1200px; + margin: 0 auto; + padding: 0 20px; +} + +.hero { + background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); + color: var(--white); + padding: 100px 0; + text-align: center; +} + +.hero h1 { + font-size: 3.5rem; + margin-bottom: 1rem; +} + +.subtitle { + font-size: 1.25rem; + margin-bottom: 2rem; +} + +.cta-button { + display: inline-block; + padding: 12px 24px; + background-color: var(--white); + color: var(--primary-color); + text-decoration: none; + border-radius: 25px; + font-weight: 600; + transition: all 0.3s ease; +} + +.cta-button:hover { + background-color: var(--secondary-color); + color: var(--white); +} + +.features-section { + padding: 80px 0; +} + +.features-section h2 { + text-align: center; + margin-bottom: 40px; + font-size: 2rem; +} + +.feature-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 30px; +} + +.feature-card { + background: var(--white); + padding: 30px; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + text-align: center; +} + +.feature-card .icon { + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.feature-card h3 { + font-size: 1.5rem; + margin-bottom: 1rem; +} + +.cta-section { + background: var(--primary-color); + color: var(--white); + padding: 60px 0; + text-align: center; +} + +.cta-section h2 { + margin-bottom: 30px; + font-size: 2rem; +} + +footer { + background: var(--secondary-color); + color: var(--white); + padding: 40px 0; + text-align: center; +} + +footer nav { + margin-bottom: 20px; +} + +footer nav a { + color: var(--white); + text-decoration: none; + margin: 0 15px; +} + +@media (max-width: 768px) { + .hero h1 { + font-size: 2.5rem; + } + + .feature-grid { + grid-template-columns: 1fr; + } +} \ No newline at end of file