This commit is contained in:
Waylon Walker 2025-07-05 16:22:27 -05:00
commit e2cab8ec0b
6 changed files with 495 additions and 0 deletions

166
index-1.html Normal file
View file

@ -0,0 +1,166 @@
<!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 is a laundry pickup and delivery service in Peoria and Dunlap, IL. Wash, dry, fold, and light mending with a soft touch and fast turnaround." />
<meta name="keywords" content="laundry service Peoria IL, laundry pickup Dunlap IL, wash and fold, laundry delivery, Peoria laundry, Dunlap wash service" />
<meta name="author" content="Fluffed Up Laundry" />
<title>Fluffed Up | Laundry Pickup & Delivery in Peoria and Dunlap IL</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet" />
<style>
body {
font-family: 'Inter', sans-serif;
margin: 0;
background: #fafafa;
color: #333;
}
header {
background: #f3f3f3;
padding: 2rem 1rem;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin: 0.2em 0;
}
header p {
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto;
}
section {
padding: 3rem 1rem;
max-width: 960px;
margin: auto;
}
.services, .pricing {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
.tagline {
font-size: 1.25rem;
font-style: italic;
margin-bottom: 1rem;
}
.photo-placeholder {
background: #ddd;
height: 250px;
border-radius: 8px;
background-size: cover;
background-position: center;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
}
th, td {
border: 1px solid #ccc;
padding: 0.75rem;
text-align: left;
}
footer {
background: #222;
color: #eee;
text-align: center;
padding: 2rem 1rem;
}
a.button {
display: inline-block;
background: #0077cc;
color: white;
padding: 1rem 2rem;
margin-top: 1rem;
text-decoration: none;
border-radius: 6px;
}
</style>
</head>
<body>
<header>
<h1>Fluffed Up</h1>
<p>Laundry Pickup & Delivery in Peoria & Dunlap, IL</p>
<p class="tagline">“We handle your dirty laundry — with clean hands and a soft touch.”</p>
<a href="mailto:hello@fluffed-up.com" class="button">Schedule a Pickup</a>
</header>
<section>
<h2>Why Fluffed Up?</h2>
<p>
Lifes too short to spend it sorting socks. Fluffed Up is your neighborhood laundry pickup and delivery service, serving Peoria and Dunlap, Illinois. Whether its a one-time rescue or a weekly routine, weve got your back — and your slacks.
</p>
<div class="photo-placeholder" style="background-image: url('https://source.unsplash.com/featured/?laundry');"></div>
</section>
<section>
<h2>Our Services</h2>
<div class="services">
<div>
<h3>🧼 Wash/Dry/Fold</h3>
<p>Everything washed with care, dried to fluffiness, and folded to perfection. Because wrinkled clothes are so last century.</p>
</div>
<div>
<h3>🧵 Light Mending</h3>
<p>Loose buttons, minor tears, and rebellious seams — we stitch with love and judgment-free kindness.</p>
</div>
</div>
<p class="tagline">“Professionally fluffed. Emotionally supported.”</p>
</section>
<section>
<h2>Turnaround Options</h2>
<ul>
<li><strong>48-Hour Standard:</strong> Picked up Monday, dropped off Wednesday. Easy rhythm, reliable service.</li>
<li><strong>24-Hour Express:</strong> Rush fee of $10 — because sometimes life happens fast.</li>
<li><strong>Recurring Pickup:</strong> Weekly rhythm = less stress + soft clothes forever.</li>
</ul>
<p class="tagline">“The only thing we mess with is wrinkles.”</p>
</section>
<section>
<h2>Pricing</h2>
<div class="pricing">
<div>
<table>
<thead>
<tr><th>Option</th><th>Price</th><th>Notes</th></tr>
</thead>
<tbody>
<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>~25 lbs (avg full bag)</td></tr>
<tr><td>Rush Service</td><td>+$10</td><td>24-hour turnaround</td></tr>
<tr><td>Pickup & Delivery</td><td>Included*</td><td>*$510 outside core areas</td></tr>
</tbody>
</table>
</div>
<div>
<h3>Optional Add-ons</h3>
<ul>
<li>Ironing</li>
<li>Hypoallergenic Detergents</li>
<li>Stain Pre-treatment</li>
<li>Delicate Garment Handling</li>
</ul>
</div>
</div>
</section>
<section>
<h2>Service Area</h2>
<p>
Currently fluffing laundry in <strong>Peoria, IL</strong> and <strong>Dunlap, IL</strong>. If you're nearby, but unsure — reach out!
</p>
<div class="photo-placeholder" style="background-image: url('https://source.unsplash.com/featured/?neighborhood');"></div>
</section>
<footer>
<p>&copy; 2025 Fluffed Up Laundry | <a href="mailto:hello@fluffed-up.com" style="color: #fff;">hello@fluffed-up.com</a></p>
<p><a href="https://fluffed-up.com" style="color: #fff;">fluffed-up.com</a></p>
</footer>
</body>
</html>