296 lines
11 KiB
PHP
296 lines
11 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MajuroEats - Order Food Online</title>
|
|
<meta name="description" content="Your one-stop destination for ordering food from the best local restaurants in Majuro.">
|
|
<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=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--primary-color: #EB1A01; /* DoorDash Red */
|
|
--secondary-color: #333333; /* Dark Gray */
|
|
--background-color: #F7F7F7; /* Light Gray */
|
|
--surface-color: #FFFFFF; /* White */
|
|
--text-color: #333333;
|
|
--text-light: #767676;
|
|
--border-color: #EEEEEE;
|
|
--border-radius: 0.5rem;
|
|
--spacing-unit: 1rem;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 0 var(--spacing-unit);
|
|
}
|
|
|
|
header {
|
|
background-color: var(--surface-color);
|
|
padding: var(--spacing-unit) 0;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.header-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 0 var(--spacing-unit);
|
|
}
|
|
|
|
.logo {
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
color: var(--secondary-color);
|
|
}
|
|
|
|
.logo span {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.address-search-container {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: var(--background-color);
|
|
border-radius: 50px;
|
|
padding: 0.5rem 1rem;
|
|
flex-grow: 1;
|
|
margin: 0 2rem;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.address-search-container input {
|
|
border: none;
|
|
background: transparent;
|
|
outline: none;
|
|
font-size: 1rem;
|
|
width: 100%;
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.header-actions .icon-button {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
main {
|
|
margin-top: calc(var(--spacing-unit) * 2);
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
margin-bottom: var(--spacing-unit);
|
|
}
|
|
|
|
.restaurant-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
|
|
gap: calc(var(--spacing-unit) * 2);
|
|
}
|
|
|
|
.restaurant-card {
|
|
background-color: var(--surface-color);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
|
|
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>
|
|
<body>
|
|
|
|
<header>
|
|
<div class="header-container">
|
|
<div class="logo">Majuro<span>Eats</span></div>
|
|
<div class="address-search-container">
|
|
<input type="text" placeholder="Enter delivery address">
|
|
</div>
|
|
<div class="header-actions">
|
|
<button class="icon-button">
|
|
<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>
|
|
</button>
|
|
<button class="icon-button">
|
|
<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>
|
|
</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>© <?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>
|
|
</html>
|