Compare commits

...

1 Commits

Author SHA1 Message Date
Flatlogic Bot
19f1cf94a2 v0.1 2025-12-09 14:54:28 +00:00
7 changed files with 470 additions and 144 deletions

84
about.php Normal file
View File

@ -0,0 +1,84 @@
<!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>&copy; 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>

24
api/pexels.php Normal file
View File

@ -0,0 +1,24 @@
<?php
header('Content-Type: application/json');
require_once __DIR__.'/../includes/pexels.php';
if (php_sapi_name() === 'cli') {
parse_str(implode('&', array_slice($argv, 1)), $_GET);
}
$q = isset($_GET['query']) ? $_GET['query'] : 'nature';
$orientation = isset($_GET['orientation']) ? $_GET['orientation'] : 'portrait';
$url = 'https://api.pexels.com/v1/search?query=' . urlencode($q) . '&orientation=' . urlencode($orientation) . '&per_page=1&page=1';
$data = pexels_get($url);
if (!$data || empty($data['photos'])) { echo json_encode(['error'=>'Failed to fetch image']); exit; }
$photo = $data['photos'][0];
$src = $photo['src']['large2x'] ?? ($photo['src']['large'] ?? $photo['src']['original']);
$target = __DIR__ . '/../assets/images/pexels/' . $photo['id'] . '.jpg';
download_to($src, $target);
// Return minimal info and local relative path
echo json_encode([
'id' => $photo['id'],
'local' => 'assets/images/pexels/' . $photo['id'] . '.jpg',
'photographer' => $photo['photographer'] ?? null,
'photographer_url' => $photo['photographer_url'] ?? null,
]);

118
assets/css/custom.css Normal file
View File

@ -0,0 +1,118 @@
/* Dental Clinic Custom CSS */
:root {
--primary-color: #4A90E2; /* Calm Blue */
--secondary-color: #50E3C2; /* Fresh Teal */
--text-color: #333;
--light-text-color: #f8f9fa;
--bg-color: #FFFFFF;
--surface-color: #F8F9FA;
--heading-font: Georgia, 'Times New Roman', Times, serif;
--body-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
--border-radius: 0.5rem;
}
body {
font-family: var(--body-font);
color: var(--text-color);
line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--heading-font);
font-weight: 700;
}
.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
border-radius: var(--border-radius);
padding: 0.75rem 1.5rem;
font-weight: bold;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: #3a7bc8;
border-color: #3a7bc8;
transform: translateY(-2px);
}
.btn-secondary {
background-color: var(--secondary-color);
border-color: var(--secondary-color);
border-radius: var(--border-radius);
padding: 0.75rem 1.5rem;
font-weight: bold;
transition: all 0.3s ease;
}
.btn-secondary:hover {
background-color: #40c3a2;
border-color: #40c3a2;
transform: translateY(-2px);
}
.navbar-brand {
font-family: var(--heading-font);
font-weight: bold;
font-size: 1.5rem;
}
.hero {
color: white;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/pexels/3783839.jpg') no-repeat center center;
background-size: cover;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 700;
}
.hero p {
font-size: 1.25rem;
max-width: 600px;
margin: 1rem auto 2rem;
}
.section {
padding: 80px 0;
}
.bg-surface {
background-color: var(--surface-color);
}
.feature-card, .service-card {
background: var(--bg-color);
border: none;
border-radius: var(--border-radius);
padding: 2rem;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.07);
transition: all 0.3s ease;
height: 100%;
}
.feature-card:hover, .service-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.feature-card .icon, .service-card .icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 1rem;
}
footer {
background-color: #343a40;
color: var(--light-text-color);
padding: 40px 0;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

33
contact.php Normal file
View File

@ -0,0 +1,33 @@
<?php
require_once __DIR__ . '/mail/MailService.php';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$name = trim($_POST['name'] ?? '');
$email = trim($_POST['email'] ?? '');
$message = trim($_POST['message'] ?? '');
if (empty($name) || !filter_var($email, FILTER_VALIDATE_EMAIL) || empty($message)) {
// Basic validation failed
header('Location: index.php?status=error#appointment-form');
exit;
}
// Send email
$subject = 'New Appointment Request';
$res = MailService::sendContactMessage($name, $email, $message, null, $subject);
if (!empty($res['success'])) {
header('Location: index.php?status=success#appointment-form');
exit;
} else {
// Log error if possible, then redirect
error_log('MailService Error: ' . ($res['error'] ?? 'Unknown error'));
header('Location: index.php?status=error#appointment-form');
exit;
}
} else {
// If not a POST request, redirect to home
header('Location: index.php');
exit;
}

25
includes/pexels.php Normal file
View File

@ -0,0 +1,25 @@
<?php
function pexels_key() {
$k = getenv('PEXELS_KEY');
return $k && strlen($k) > 0 ? $k : 'Vc99rnmOhHhJAbgGQoKLZtsaIVfkeownoQNbTj78VemUjKh08ZYRbf18';
}
function pexels_get($url) {
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [ 'Authorization: '. pexels_key() ],
CURLOPT_TIMEOUT => 15,
]);
$resp = curl_exec($ch);
$code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($code >= 200 && $code < 300 && $resp) return json_decode($resp, true);
return null;
}
function download_to($srcUrl, $destPath) {
$data = file_get_contents($srcUrl);
if ($data === false) return false;
if (!is_dir(dirname($destPath))) mkdir(dirname($destPath), 0775, true);
return file_put_contents($destPath, $data) !== false;
}

312
index.php
View File

@ -1,150 +1,192 @@
<?php <!DOCTYPE html>
declare(strict_types=1);
@ini_set('display_errors', '1');
@error_reporting(E_ALL);
@date_default_timezone_set('UTC');
$phpVersion = PHP_VERSION;
$now = date('Y-m-d H:i:s');
?>
<!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Style</title> <title>Bright Smiles Dental Studio</title>
<?php
// Read project preview data from environment <?php
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? ''; // Read project preview data from environment
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? ''; $projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'A modern, friendly dental practice offering a wide range of services.';
?> $projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
<?php if ($projectDescription): ?> ?>
<!-- Meta description --> <meta name="description" content="<?= htmlspecialchars($projectDescription) ?>">
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' /> <meta name="keywords" content="dental practice, dentist, teeth whitening, orthodontics, general dentistry">
<?php if ($projectDescription): ?>
<!-- Open Graph meta tags --> <!-- Open Graph meta tags -->
<meta property="og:title" content="Bright Smiles Dental Studio" />
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" /> <meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<!-- Twitter meta tags --> <!-- Twitter meta tags -->
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" /> <meta name="twitter:title" content="Bright Smiles Dental Studio" />
<?php endif; ?> <meta name="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<?php if ($projectImageUrl): ?> <?php endif; ?>
<?php if ($projectImageUrl): ?>
<!-- Open Graph image --> <!-- Open Graph image -->
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" /> <meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<!-- Twitter image --> <!-- Twitter image -->
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" /> <meta name="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<?php endif; ?> <?php endif; ?>
<link rel="preconnect" href="https://fonts.googleapis.com"> <meta property="og:type" content="website" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <meta name="twitter:card" content="summary_large_image" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<style> <!-- Bootstrap CSS -->
:root { <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
--bg-color-start: #6a11cb; <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
--bg-color-end: #2575fc;
--text-color: #ffffff; <!-- Custom CSS -->
--card-bg-color: rgba(255, 255, 255, 0.01); <link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
--card-border-color: rgba(255, 255, 255, 0.1);
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
color: var(--text-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
overflow: hidden;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
animation: bg-pan 20s linear infinite;
z-index: -1;
}
@keyframes bg-pan {
0% { background-position: 0% 0%; }
100% { background-position: 100% 100%; }
}
main {
padding: 2rem;
}
.card {
background: var(--card-bg-color);
border: 1px solid var(--card-border-color);
border-radius: 16px;
padding: 2rem;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.loader {
margin: 1.25rem auto 1.25rem;
width: 48px;
height: 48px;
border: 3px solid rgba(255, 255, 255, 0.25);
border-top-color: #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.hint {
opacity: 0.9;
}
.sr-only {
position: absolute;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap; border: 0;
}
h1 {
font-size: 3rem;
font-weight: 700;
margin: 0 0 1rem;
letter-spacing: -1px;
}
p {
margin: 0.5rem 0;
font-size: 1.1rem;
}
code {
background: rgba(0,0,0,0.2);
padding: 2px 6px;
border-radius: 4px;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.8rem;
opacity: 0.7;
}
</style>
</head> </head>
<body> <body>
<main>
<div class="card"> <!-- Navbar -->
<h1>Analyzing your requirements and generating your website…</h1> <nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top shadow-sm">
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes"> <div class="container">
<span class="sr-only">Loading…</span> <a class="navbar-brand" href="#">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 active" aria-current="page" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" 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="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div> </div>
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
<p class="hint">This page will update automatically as the plan is implemented.</p>
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
</div> </div>
</main> </nav>
<footer>
Page updated: <?= htmlspecialchars($now) ?> (UTC) <!-- Hero Section -->
<header class="hero">
<div class="container">
<h1 class="display-3">Your Smile, Our Passion.</h1>
<p class="lead">Welcome to a dental experience that is modern, comfortable, and tailored just for you. Let us help you achieve the healthy, beautiful smile you deserve.</p>
<a href="#appointment-form" class="btn btn-primary btn-lg">Book an Appointment</a>
</div>
</header>
<!-- Features Section -->
<section id="features" class="section bg-surface">
<div class="container text-center">
<h2 class="mb-5">Why Choose Bright Smiles Dental?</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="feature-card">
<div class="icon"><i class="bi bi-gear-wide-connected"></i></div>
<h3>Modern Technology</h3>
<p>We use the latest digital X-rays, 3D imaging, and pain-free techniques for accurate and comfortable treatments.</p>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="feature-card">
<div class="icon"><i class="bi bi-people-fill"></i></div>
<h3>Family-Friendly Care</h3>
<p>Our friendly team provides a warm, welcoming environment for patients of all ages, from children to seniors.</p>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="feature-card">
<div class="icon"><i class="bi bi-clock-history"></i></div>
<h3>Emergency Services</h3>
<p>Dental emergencies can be stressful. We offer prompt, compassionate care when you need it most.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Appointment Form Section -->
<section id="appointment-form" class="section">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h2>Request an Appointment</h2>
<p class="lead">Fill out the form below, and our team will contact you shortly to confirm your booking.</p>
</div>
<div class="col-lg-7 mt-4">
<form action="contact.php" method="POST">
<div class="mb-3">
<label for="name" class="form-label">Full Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message (Optional: Preferred date/time)</label>
<textarea class="form-control" id="message" name="message" rows="4" required></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary btn-lg">Send Request</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="container">
<p class="mb-0">&copy; <?php echo date("Y"); ?> Bright Smiles Dental Studio. All Rights Reserved.</p>
<p class="small">123 Dental Lane, Smileville, ST 12345 | (123) 456-7890</p>
</div>
</footer> </footer>
<!-- Toast Notification -->
<div class="position-fixed bottom-0 end-0 p-3" style="z-index: 11">
<div id="notificationToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<strong class="me-auto">Notification</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Toast notification logic
const urlParams = new URLSearchParams(window.location.search);
const status = urlParams.get('status');
const toastEl = document.getElementById('notificationToast');
if (status && toastEl) {
const toast = new bootstrap.Toast(toastEl);
const toastBody = toastEl.querySelector('.toast-body');
if (status === 'success') {
toastBody.innerHTML = "Thank you! Your appointment request has been sent. We'll be in touch soon.";
toastEl.classList.add('bg-success', 'text-white');
} else if (status === 'error') {
toastBody.innerHTML = "Oops! Something went wrong. Please check your details and try again.";
toastEl.classList.add('bg-danger', 'text-white');
}
toast.show();
}
});
</script>
</body> </body>
</html> </html>