-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
71 lines (64 loc) · 3.82 KB
/
Copy pathabout.php
File metadata and controls
71 lines (64 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
$pageTitle = 'About Us';
require_once __DIR__ . '/includes/header.php';
?>
<div class="container my-5">
<div class="row">
<div class="col-lg-8 mx-auto">
<h1 class="mb-4 fw-bold text-center" data-aos="fade-down">About Flip and Strip</h1>
<div class="card border-0 shadow-sm mb-4" data-aos="fade-up" data-aos-delay="100">
<div class="card-body p-5">
<h3 class="text-danger mb-3">Quality Motorcycle, ATV/UTV, Boat & Automotive Parts</h3>
<p class="lead">
Flip and Strip specializes in providing high-quality, tested motorcycle, ATV/UTV, boat, and automotive parts
from top manufacturers including Harley Davidson, Yamaha, Honda, Kawasaki, Suzuki, BMW, and more.
</p>
<p>
All our parts are carefully inspected, tested, and photographed to ensure you know exactly
what you're getting. We take pride in offering low-mileage parts that are in excellent working condition.
</p>
<h4 class="mt-4 mb-3">What We Offer</h4>
<ul class="list-unstyled">
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i> Tested and inspected parts</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i> Low-mileage components</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i> Detailed photos and descriptions</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i> Fast shipping with multiple carrier options</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i> Secure PayPal checkout</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i> Direct integration with our eBay store</li>
<li class="mb-2"><i class="bi bi-check-circle-fill text-success me-2"></i> Live chat support via Tawk.to</li>
</ul>
<h4 class="mt-4 mb-3">Our Inventory</h4>
<p>
We maintain a large inventory of motorcycle, ATV/UTV, boat, and automotive parts, including:
</p>
<div class="row">
<div class="col-md-6">
<ul>
<li>Engine components</li>
<li>Brake systems</li>
<li>Fairings and body parts</li>
<li>Electrical components</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>Suspension parts</li>
<li>Exhaust systems</li>
<li>Accessories</li>
<li>And much more!</li>
</ul>
</div>
</div>
</div>
</div>
<div class="text-center" data-aos="fade-up" data-aos-delay="200">
<h3 class="mb-4">Ready to Find Your Parts?</h3>
<div class="d-flex gap-3 justify-content-center">
<a href="products.php" class="btn btn-danger btn-lg">Browse Products</a>
<a href="contact.php" class="btn btn-danger btn-lg">Contact Us</a>
</div>
</div>
</div>
</div>
</div>
<?php require_once __DIR__ . '/includes/footer.php'; ?>