-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
100 lines (96 loc) · 4.6 KB
/
about.html
File metadata and controls
100 lines (96 loc) · 4.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!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="Learn more about Klear Vision Solutions and our commitment to excellence.">
<title>About Us | Klear Vision Solutions</title>
<link rel="icon" type="image/png" href="images/icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="./compiled_sass/main.css">
<script defer src="js/loadComponents.js"></script>
</head>
<body>
<div id="header"></div>
<main>
<section id="about-hero">
<div class="content-container">
<div class="text-section">
<h1>About Klear Vision</h1>
<p class="lead">Bringing clarity to manufacturing consulting through expertise, innovation, and dedication.</p>
</div>
</div>
</section>
<section id="about-story">
<div class="about-content">
<h2>Our Story</h2>
<p>Founded with a vision to help manufacturing businesses reach their full potential, Klear Vision Solutions has become a trusted partner for companies looking to optimize their operations and drive sustainable growth.</p>
<p>We understand that every manufacturing challenge is unique. That's why we take a tailored approach to consulting, combining industry expertise with innovative solutions to deliver results that matter.</p>
</div>
</section>
<section id="about-mission">
<div class="mission-vision-grid">
<div class="mission-card">
<i class="fas fa-bullseye"></i>
<h3>Our Mission</h3>
<p>To empower manufacturing businesses with the insights, strategies, and tools they need to achieve operational excellence and sustained growth.</p>
</div>
<div class="mission-card">
<i class="fas fa-eye"></i>
<h3>Our Vision</h3>
<p>To be the most trusted consulting partner in the manufacturing industry, recognized for delivering transformative results with clarity and precision.</p>
</div>
<div class="mission-card">
<i class="fas fa-heart"></i>
<h3>Our Values</h3>
<ul>
<li>Client-first approach</li>
<li>Data-driven decisions</li>
<li>Transparency and integrity</li>
<li>Continuous improvement</li>
</ul>
</div>
</div>
</section>
<section id="about-stats">
<h2>Our Impact</h2>
<div class="stats-grid">
<div class="stat-item">
<div class="stat-number">50+</div>
<div class="stat-label">Clients Served</div>
</div>
<div class="stat-item">
<div class="stat-number">15+</div>
<div class="stat-label">Years of Experience</div>
</div>
<div class="stat-item">
<div class="stat-number">100+</div>
<div class="stat-label">Projects Completed</div>
</div>
<div class="stat-item">
<div class="stat-number">95%</div>
<div class="stat-label">Client Satisfaction</div>
</div>
</div>
</section>
<section id="about-cta">
<div class="cta-container">
<h2>Ready to Work Together?</h2>
<p>Let's discuss how we can help your business achieve its goals.</p>
<div class="button-container">
<a href="contact.html" class="btn btn-primary">Contact Us</a>
<a href="services.html" class="btn btn-secondary">View Our Services</a>
</div>
</div>
</section>
</main>
<div id="footer"></div>
<script>
loadComponent('header', './components/header.html');
loadComponent('footer', './components/footer.html');
</script>
</body>
</html>