Initial version
This commit is contained in:
commit
0676afa89a
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
node_modules/
|
||||||
|
*/node_modules/
|
||||||
|
*/build/
|
||||||
257
index.html
Normal file
257
index.html
Normal file
@ -0,0 +1,257 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Flatlogic: Build Web Apps in a Flash</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
|
margin: 40px auto;
|
||||||
|
max-width: 650px;
|
||||||
|
line-height: 1.6;
|
||||||
|
font-size: 18px;
|
||||||
|
color: #444;
|
||||||
|
padding: 0 10px;
|
||||||
|
background: linear-gradient(to right, #FFDDC1, #FFB26B);
|
||||||
|
}
|
||||||
|
h1, h2, h3 {
|
||||||
|
line-height: 1.2;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2rem;
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
||||||
|
animation: fadeIn 1s ease-in-out;
|
||||||
|
}
|
||||||
|
.hero {
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
animation: slideInFromLeft 1s ease-in-out;
|
||||||
|
}
|
||||||
|
.hero h1 {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
color: #FFA500;
|
||||||
|
}
|
||||||
|
.story {
|
||||||
|
animation: slideInFromRight 1s ease-in-out;
|
||||||
|
}
|
||||||
|
.story ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.story li {
|
||||||
|
background: #e9ecef;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 5px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
animation: fadeIn 0.5s ease-in-out backwards;
|
||||||
|
}
|
||||||
|
.story li:nth-child(1) {
|
||||||
|
animation-delay: 0.2s;
|
||||||
|
}
|
||||||
|
.story li:nth-child(2) {
|
||||||
|
animation-delay: 0.4s;
|
||||||
|
}
|
||||||
|
.story li:nth-child(3) {
|
||||||
|
animation-delay: 0.6s;
|
||||||
|
}
|
||||||
|
.story li::before {
|
||||||
|
content: '✓';
|
||||||
|
color: #28a745;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
.calculator {
|
||||||
|
background: #f8f9fa;
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-top: 2rem;
|
||||||
|
animation: fadeIn 1s ease-in-out;
|
||||||
|
}
|
||||||
|
.calculator h2 {
|
||||||
|
text-align: center;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.calculator p {
|
||||||
|
text-align: center;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.form-group {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
.form-group label {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.form-group input[type="number"], .form-group input[type="checkbox"] {
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
.result {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
.result h3 {
|
||||||
|
color: #28a745;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
.cta {
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
animation: fadeIn 1s ease-in-out 1s backwards;
|
||||||
|
}
|
||||||
|
.btn {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 25px;
|
||||||
|
background-color: #FFA500;
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: bold;
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
}
|
||||||
|
.btn:hover {
|
||||||
|
background-color: #E69500;
|
||||||
|
}
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; }
|
||||||
|
to { opacity: 1; }
|
||||||
|
}
|
||||||
|
@keyframes slideInFromLeft {
|
||||||
|
from { transform: translateX(-100%); }
|
||||||
|
to { transform: translateX(0); }
|
||||||
|
}
|
||||||
|
@keyframes slideInFromRight {
|
||||||
|
from { transform: translateX(100%); }
|
||||||
|
to { transform: translateX(0); }
|
||||||
|
}
|
||||||
|
.social-media {
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1rem;
|
||||||
|
animation: fadeIn 1s ease-in-out 1s backwards;
|
||||||
|
}
|
||||||
|
.social-media ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 15px;
|
||||||
|
}
|
||||||
|
.social-media a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #FFA500;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.social-media a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="hero">
|
||||||
|
<h1>Tired of the Grind? Build Web Apps in a Flash.</h1>
|
||||||
|
<p>Let's face it, building web applications from scratch is a marathon. You're juggling frontend frameworks, backend logic, database schemas, and a million other details. It's slow, it's tedious, and it's expensive.</p>
|
||||||
|
<p>But what if there was a better way? What if you could go from idea to a fully functional, production-ready web app in a fraction of the time?</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="story">
|
||||||
|
<h2>Enter Flatlogic: Your AI-Powered Development Partner</h2>
|
||||||
|
<p>Flatlogic is a revolutionary platform that's changing the game for developers and businesses. We use the power of AI to automate the most time-consuming parts of web development, so you can focus on what really matters: building amazing products.</p>
|
||||||
|
<p>Here's how it works:</p>
|
||||||
|
<ul>
|
||||||
|
<li><strong>Describe your app in plain English.</strong> Our AI will generate a full-stack application, including the frontend, backend, and database, based on your description.</li>
|
||||||
|
<li><strong>Choose your stack.</strong> We support all the most popular technologies, including React, Angular, Vue, Node.js, and more.</li>
|
||||||
|
<li><strong>Customize and deploy.</strong> You get full access to the source code, so you can customize your app to your heart's content. And when you're ready, you can deploy it to the cloud with a single click.</li>
|
||||||
|
</ul>
|
||||||
|
<p>With Flatlogic, you can build custom CRMs, ERPs, and other data management tools in a fraction of the time it would take with traditional methods. It's the perfect solution for startups, small businesses, and enterprise teams who need to move fast and build great software.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="calculator">
|
||||||
|
<h2>Project Cost Estimator</h2>
|
||||||
|
<p>Estimate the cost of your web application with our simple calculator.</p>
|
||||||
|
<form id="cost-estimator">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="pages">Number of Pages:</label>
|
||||||
|
<input type="number" id="pages" name="pages" min="1" value="5">
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="entities">Number of Entities:</label>
|
||||||
|
<input type="number" id="entities" name="entities" min="1" value="5">
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="auth">Authentication:</label>
|
||||||
|
<input type="checkbox" id="auth" name="auth" checked>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="payment">Payment Integration:</label>
|
||||||
|
<input type="checkbox" id="payment" name="payment">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<div class="result">
|
||||||
|
<h3>Estimated Cost: <span id="estimated-cost">$1250</span></h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cta">
|
||||||
|
<h2>Ready to start building?</h2>
|
||||||
|
<p>Sign up for a free trial today and see how Flatlogic can help you build your next great idea.</p>
|
||||||
|
<a href="https://flatlogic.com/" class="btn">Get Started</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="social-media">
|
||||||
|
<h2>Follow us on Social Media</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://github.com/flatlogic" target="_blank">GitHub</a></li>
|
||||||
|
<li><a href="https://www.linkedin.com/company/flatlogic/" target="_blank">LinkedIn</a></li>
|
||||||
|
<li><a href="https://twitter.com/flatlogic" target="_blank">X (Twitter)</a></li>
|
||||||
|
<li><a href="https://www.facebook.com/flatlogic" target="_blank">Facebook</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const pagesInput = document.getElementById('pages');
|
||||||
|
const entitiesInput = document.getElementById('entities');
|
||||||
|
const authInput = document.getElementById('auth');
|
||||||
|
const paymentInput = document.getElementById('payment');
|
||||||
|
const estimatedCostEl = document.getElementById('estimated-cost');
|
||||||
|
|
||||||
|
function calculateCost() {
|
||||||
|
const pages = parseInt(pagesInput.value) || 0;
|
||||||
|
const entities = parseInt(entitiesInput.value) || 0;
|
||||||
|
const auth = authInput.checked;
|
||||||
|
const payment = paymentInput.checked;
|
||||||
|
|
||||||
|
let cost = (pages * 50) + (entities * 100);
|
||||||
|
if (auth) {
|
||||||
|
cost += 500;
|
||||||
|
}
|
||||||
|
if (payment) {
|
||||||
|
cost += 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
estimatedCostEl.textContent = `$${cost}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
pagesInput.addEventListener('input', calculateCost);
|
||||||
|
entitiesInput.addEventListener('input', calculateCost);
|
||||||
|
authInput.addEventListener('input', calculateCost);
|
||||||
|
paymentInput.addEventListener('input', calculateCost);
|
||||||
|
|
||||||
|
calculateCost();
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user