This commit is contained in:
Waylon Walker 2025-11-22 21:54:17 -06:00
parent e2cab8ec0b
commit 2a6e12f1e2
6 changed files with 17 additions and 194 deletions

9
.env Normal file
View file

@ -0,0 +1,9 @@
AWS_ACCESS_KEY_ID=waylon
AWS_SECRET_ACCESS_KEY=Q7ESYV59UVAN41O3GRM0
AWS_BUCKET_NAME=k8s-pages
# optional, defaults to us-east-1
AWS_REGION=us-east-1
AWS_ENDPOINT_URL=https://minio.wayl.one
BACKEND_CORS_ORIGINS="http://localhost:8000, chrome-extension://*, *"
DOCKER_REPO=registry.wayl.one
CACHE_DIR=./cache

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -1,194 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Fluffed Up laundry service offers wash, dry, fold, and light mending in Peoria and Dunlap, IL. Fast turnaround and doorstep delivery." />
<meta name="keywords" content="Peoria IL laundry, Dunlap laundry pickup, wash and fold service, laundry delivery Peoria, laundry service Dunlap" />
<meta name="author" content="Fluffed Up Laundry" />
<title>Fluffed Up | Peoria & Dunlap Laundry Pickup & Delivery</title>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--dark: #1c1c1e;
--gray: #2c2c2e;
--cream: #f5f0e6;
--mint: #c5e5d1;
--coral: #ff7f50;
}
body {
margin: 0;
font-family: 'Nunito', sans-serif;
background-color: var(--dark);
color: var(--cream);
line-height: 1.6;
}
header {
background-color: var(--gray);
padding: 1rem;
display: flex;
align-items: center;
justify-content: space-between;
}
header img {
height: 40px;
}
nav {
font-size: 1rem;
}
nav a {
color: var(--cream);
text-decoration: none;
margin-left: 1rem;
}
.hero {
padding: 2rem 1rem;
text-align: center;
}
.hero h1 {
font-size: 2rem;
}
.hero img {
width: 100%;
max-width: 500px;
margin-top: 1rem;
border-radius: 12px;
}
.taglines {
background-color: var(--gray);
padding: 1rem;
text-align: center;
}
.taglines p {
margin: 0.5rem 0;
font-style: italic;
}
.services, .pricing, .footer {
padding: 1.5rem 1rem;
max-width: 800px;
margin: auto;
}
.services ul {
list-style: none;
padding: 0;
}
.services li::before {
content: "\2728 ";
color: var(--mint);
}
.pricing table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
}
.pricing th, .pricing td {
border-bottom: 1px solid var(--mint);
padding: 0.75rem 0.5rem;
}
.footer {
font-size: 0.9rem;
text-align: center;
color: #aaa;
}
@media(min-width: 600px) {
.hero h1 {
font-size: 3rem;
}
}
</style>
</head>
<body>
<header>
<img src="/logo.png" alt="Fluffed Up Logo">
<nav>
<a href="#services">Services</a>
<a href="#pricing">Pricing</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero">
<h1>Your Laundry, Fluffed Up & Delivered</h1>
<p>Serving Peoria & Dunlap, IL with gentle care and doorstep convenience.</p>
<img src="/basket-on-doorstep.png" alt="Laundry basket on doorstep">
</section>
<section class="taglines">
<p>“We handle your dirty laundry — with clean hands and a soft touch.”</p>
<p>“Professionally fluffed. Emotionally supported.”</p>
<p>“The only thing we mess with is wrinkles.”</p>
</section>
<section class="services" id="services">
<h2>What We Offer</h2>
<ul>
<li>Wash / Dry / Fold — Clean and comfy, just how you like it</li>
<li>Light Mending — Small tears, loose buttons? We got you.</li>
<li>24-Hour Express Option — Add $10 for rush service</li>
<li>Free or low-cost delivery in Peoria and Dunlap</li>
</ul>
<img src="/clean-towels.png" alt="Clean folded towels" style="width:100%; margin-top:1rem; border-radius:12px;">
</section>
<section class="pricing" id="pricing">
<h2>Simple Pricing</h2>
<table>
<tr>
<th>Option</th>
<th>Price</th>
<th>Notes</th>
</tr>
<tr>
<td>Per Pound</td>
<td>$1.75/lb</td>
<td>10 lb minimum</td>
</tr>
<tr>
<td>Per 30-Gal Bag</td>
<td>$45 flat</td>
<td>Up to ~25 lbs</td>
</tr>
<tr>
<td>Rush Service</td>
<td>+$10</td>
<td>24-hour turnaround</td>
</tr>
<tr>
<td>Pickup & Delivery</td>
<td>Included or +$510</td>
<td>Based on distance</td>
</tr>
<tr>
<td>Add-ons</td>
<td>Varies</td>
<td>Ironing, hypoallergenic options, etc.</td>
</tr>
</table>
</section>
<section class="footer" id="contact">
<p>Ready to get Fluffed Up? Text or call <strong>(309) 555-0123</strong></p>
<p>Email us at <a href="mailto:hello@fluffed-up.com" style="color: var(--mint);">hello@fluffed-up.com</a></p>
<p>Follow us on Instagram <a href="https://instagram.com/fluffedup.laundry" style="color: var(--mint);">@fluffedup.laundry</a></p>
<p>&copy; 2025 Fluffed Up Laundry — Serving Peoria & Dunlap, Illinois</p>
</section>
</body>
</html>

8
justfile Normal file
View file

@ -0,0 +1,8 @@
set dotenv-load
serve:
python -m http.server 8000
deploy:
echo $AWS_ACCESS_KEY_ID
uvx --with awscli aws s3 sync site/ s3://k8s-pages/fluffed-up

BIN
logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB