85 lines
4.2 KiB
PHP
85 lines
4.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>About Us - Bright Smiles Dental</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="index.php">Bright Smiles Dental</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="index.php">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" aria-current="page" href="about.php">About Us</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#services">Services</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="contact.php">Contact</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-lg-8 offset-lg-2">
|
|
<h1 class="display-4 text-center mb-4">About Bright Smiles Dental</h1>
|
|
<p class="lead text-center">Your smile is our passion. At Bright Smiles Dental, we blend expert care with a warm, welcoming atmosphere to create a dental experience that is both comfortable and exceptional.</p>
|
|
|
|
<hr class="my-5">
|
|
|
|
<div class="p-5 mb-4 bg-light rounded-3">
|
|
<div class="container-fluid py-5">
|
|
<h2 class="display-5 fw-bold">Our Mission</h2>
|
|
<p class="fs-4">Our mission is to provide the highest quality dental care in a modern, calming, and family-friendly environment. We are dedicated to helping our patients achieve and maintain optimal oral health through personalized treatment plans, advanced technology, and a commitment to transparency and comfort. We believe that a healthy smile is the foundation of a happy and confident life.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row align-items-md-stretch">
|
|
<div class="col-md-6 mb-4">
|
|
<div class="h-100 p-5 text-white bg-dark rounded-3">
|
|
<h2>Our Values</h2>
|
|
<ul>
|
|
<li><strong>Care & Comfort:</strong> Your well-being is our top priority.</li>
|
|
<li><strong>Expertise:</strong> We pursue excellence through continuous learning.</li>
|
|
<li><strong>Transparency:</strong> Honest communication about your health and treatment.</li>
|
|
<li><strong>Technology:</strong> Leveraging the best tools for superior results.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6 mb-4">
|
|
<div class="h-100 p-5 bg-light border rounded-3">
|
|
<h2>Our Philosophy</h2>
|
|
<p>We are your partners in oral health. We take the time to listen to your needs and goals, creating a collaborative environment where you feel empowered and informed. From routine cleanings to complex procedures, our friendly team is here to support you every step of the way.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="bg-dark text-white text-center p-4 mt-5">
|
|
<div class="container">
|
|
<p>© 2025 Bright Smiles Dental. All Rights Reserved.</p>
|
|
<p>123 Dental Lane, Smileville, ST 12345 | (123) 456-7890</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|