This commit is contained in:
Flatlogic Bot 2025-10-14 22:17:27 +00:00
parent 28a6b3ca28
commit bd0cd9042d
2 changed files with 289 additions and 144 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

433
index.php
View File

@ -1,150 +1,295 @@
<?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>MajuroEats - Order Food Online</title>
<?php <meta name="description" content="Your one-stop destination for ordering food from the best local restaurants in Majuro.">
// Read project preview data from environment <link rel="preconnect" href="https://fonts.googleapis.com">
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? ''; <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? ''; <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
?> <style>
<?php if ($projectDescription): ?> :root {
<!-- Meta description --> --primary-color: #EB1A01; /* DoorDash Red */
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' /> --secondary-color: #333333; /* Dark Gray */
<!-- Open Graph meta tags --> --background-color: #F7F7F7; /* Light Gray */
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" /> --surface-color: #FFFFFF; /* White */
<!-- Twitter meta tags --> --text-color: #333333;
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" /> --text-light: #767676;
<?php endif; ?> --border-color: #EEEEEE;
<?php if ($projectImageUrl): ?> --border-radius: 0.5rem;
<!-- Open Graph image --> --spacing-unit: 1rem;
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" /> }
<!-- Twitter image -->
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" /> * {
<?php endif; ?> box-sizing: border-box;
<link rel="preconnect" href="https://fonts.googleapis.com"> margin: 0;
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> padding: 0;
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet"> }
<style>
:root { body {
--bg-color-start: #6a11cb; font-family: 'Poppins', sans-serif;
--bg-color-end: #2575fc; background-color: var(--background-color);
--text-color: #ffffff; color: var(--text-color);
--card-bg-color: rgba(255, 255, 255, 0.01); line-height: 1.5;
--card-border-color: rgba(255, 255, 255, 0.1); }
}
body { .container {
margin: 0; max-width: 1280px;
font-family: 'Inter', sans-serif; margin: 0 auto;
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end)); padding: 0 var(--spacing-unit);
color: var(--text-color); }
display: flex;
justify-content: center; header {
align-items: center; background-color: var(--surface-color);
min-height: 100vh; padding: var(--spacing-unit) 0;
text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05);
overflow: hidden; position: sticky;
position: relative; top: 0;
} z-index: 1000;
body::before { }
content: '';
position: absolute; .header-container {
top: 0; display: flex;
left: 0; justify-content: space-between;
width: 100%; align-items: center;
height: 100%; max-width: 1280px;
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>'); margin: 0 auto;
animation: bg-pan 20s linear infinite; padding: 0 var(--spacing-unit);
z-index: -1; }
}
@keyframes bg-pan { .logo {
0% { background-position: 0% 0%; } font-size: 1.75rem;
100% { background-position: 100% 100%; } font-weight: 700;
} color: var(--secondary-color);
main { }
padding: 2rem;
} .logo span {
.card { color: var(--primary-color);
background: var(--card-bg-color); }
border: 1px solid var(--card-border-color);
border-radius: 16px; .address-search-container {
padding: 2rem; display: flex;
backdrop-filter: blur(20px); align-items: center;
-webkit-backdrop-filter: blur(20px); background-color: var(--background-color);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1); border-radius: 50px;
} padding: 0.5rem 1rem;
.loader { flex-grow: 1;
margin: 1.25rem auto 1.25rem; margin: 0 2rem;
width: 48px; max-width: 600px;
height: 48px; }
border: 3px solid rgba(255, 255, 255, 0.25);
border-top-color: #fff; .address-search-container input {
border-radius: 50%; border: none;
animation: spin 1s linear infinite; background: transparent;
} outline: none;
@keyframes spin { font-size: 1rem;
from { transform: rotate(0deg); } width: 100%;
to { transform: rotate(360deg); } font-family: 'Poppins', sans-serif;
} }
.hint {
opacity: 0.9; .header-actions {
} display: flex;
.sr-only { align-items: center;
position: absolute; gap: 1.5rem;
width: 1px; height: 1px; }
padding: 0; margin: -1px;
overflow: hidden; .header-actions .icon-button {
clip: rect(0, 0, 0, 0); background: none;
white-space: nowrap; border: 0; border: none;
} cursor: pointer;
h1 { }
font-size: 3rem;
font-weight: 700; main {
margin: 0 0 1rem; margin-top: calc(var(--spacing-unit) * 2);
letter-spacing: -1px; }
}
p { .page-title {
margin: 0.5rem 0; font-size: 2rem;
font-size: 1.1rem; font-weight: 600;
} margin-bottom: var(--spacing-unit);
code { }
background: rgba(0,0,0,0.2);
padding: 2px 6px; .restaurant-grid {
border-radius: 4px; display: grid;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
} gap: calc(var(--spacing-unit) * 2);
footer { }
position: absolute;
bottom: 1rem; .restaurant-card {
font-size: 0.8rem; background-color: var(--surface-color);
opacity: 0.7; border-radius: var(--border-radius);
} box-shadow: 0 4px 12px rgba(0,0,0,0.08);
</style> overflow: hidden;
transition: all 0.2s ease-in-out;
cursor: pointer;
display: flex;
flex-direction: column;
}
.restaurant-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.restaurant-card img {
width: 100%;
height: 180px;
object-fit: cover;
}
.restaurant-card-content {
padding: var(--spacing-unit);
display: flex;
flex-direction: column;
flex-grow: 1;
}
.restaurant-card-content h3 {
font-size: 1.15rem;
font-weight: 600;
margin-bottom: calc(var(--spacing-unit) / 4);
}
.restaurant-card-content p {
color: var(--text-light);
font-size: 0.9rem;
}
.restaurant-card-details {
margin-top: auto;
padding-top: var(--spacing-unit);
font-size: 0.85rem;
color: var(--text-light);
}
.restaurant-card-details p {
margin-bottom: calc(var(--spacing-unit) / 4);
display: flex;
align-items: center;
}
.restaurant-card-details svg {
width: 14px;
height: 14px;
margin-right: 8px;
stroke-width: 2;
}
footer {
text-align: center;
padding: calc(var(--spacing-unit) * 3) 0;
margin-top: calc(var(--spacing-unit) * 3);
background-color: var(--surface-color);
border-top: 1px solid var(--border-color);
}
/* Search bar specific styles */
.search-section {
margin-bottom: calc(var(--spacing-unit) * 2);
}
.search-bar {
width: 100%;
padding: calc(var(--spacing-unit) * 0.9);
font-size: 1rem;
border-radius: 50px;
border: 1px solid var(--border-color);
font-family: 'Poppins', sans-serif;
background-color: var(--surface-color);
padding-left: 2.5rem;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-search'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: 1rem center;
}
</style>
</head> </head>
<body> <body>
<main>
<div class="card"> <header>
<h1>Analyzing your requirements and generating your website…</h1> <div class="header-container">
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes"> <div class="logo">Majuro<span>Eats</span></div>
<span class="sr-only">Loading…</span> <div class="address-search-container">
</div> <input type="text" placeholder="Enter delivery address">
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p> </div>
<p class="hint">This page will update automatically as the plan is implemented.</p> <div class="header-actions">
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p> <button class="icon-button">
</div> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-user"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
</main> </button>
<footer> <button class="icon-button">
Page updated: <?= htmlspecialchars($now) ?> (UTC) <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-shopping-bag"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>
</footer> </button>
</div>
</div>
</header>
<main class="container">
<section class="search-section">
<input type="text" id="search-input" class="search-bar" placeholder="Search restaurants, cuisines, dishes...">
</section>
<h2 class="page-title">Featured Restaurants</h2>
<section class="restaurant-list">
<div class="restaurant-grid" id="restaurant-grid">
<?php
require_once 'db/config.php';
try {
$pdo = db();
$stmt = $pdo->query("SELECT name, cuisine, image_url, address, phone, opening_hours FROM restaurants ORDER BY name");
$restaurants = $stmt->fetchAll();
foreach ($restaurants as $restaurant) {
echo '<div class="restaurant-card" data-name="' . htmlspecialchars(strtolower($restaurant['name'])) . '" data-cuisine="' . htmlspecialchars(strtolower($restaurant['cuisine'])) . '">';
echo '<img src="' . htmlspecialchars($restaurant['image_url']) . '" alt="' . htmlspecialchars($restaurant['name']) . '">';
echo '<div class="restaurant-card-content">';
echo '<div>';
echo '<h3>' . htmlspecialchars($restaurant['name']) . '</h3>';
echo '<p>' . htmlspecialchars($restaurant['cuisine']) . '</p>';
echo '</div>';
echo '<div class="restaurant-card-details">';
if (!empty($restaurant['address'])) {
echo '<p><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-map-pin"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>' . htmlspecialchars($restaurant['address']) . '</p>';
}
if (!empty($restaurant['opening_hours'])) {
echo '<p><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-clock"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>' . htmlspecialchars($restaurant['opening_hours']) . '</p>';
}
echo '</div>';
echo '</div>';
echo '</div>';
}
} catch (PDOException $e) {
echo '<p>Error: Could not fetch restaurants from the database.</p>';
// Optionally log the error: error_log($e->getMessage());
}
?>
</div>
</section>
</main>
<footer>
<p>&copy; <?php echo date("Y"); ?> MajuroEats. All Rights Reserved.</p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function () {
const searchInput = document.getElementById('search-input');
const restaurantCards = document.querySelectorAll('.restaurant-card');
searchInput.addEventListener('keyup', function () {
const searchTerm = searchInput.value.toLowerCase();
restaurantCards.forEach(card => {
const name = card.dataset.name;
const cuisine = card.dataset.cuisine;
if (name.includes(searchTerm) || cuisine.includes(searchTerm)) {
card.style.display = 'flex';
} else {
card.style.display = 'none';
}
});
});
});
</script>
</body> </body>
</html> </html>