Basket added
This commit is contained in:
parent
5937f66b48
commit
233708e402
437
index.php
437
index.php
@ -1,150 +1,301 @@
|
||||
<?php
|
||||
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>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>New Style</title>
|
||||
<?php
|
||||
// Read project preview data from environment
|
||||
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
|
||||
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
||||
?>
|
||||
<?php if ($projectDescription): ?>
|
||||
<!-- Meta description -->
|
||||
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
|
||||
<!-- Open Graph meta tags -->
|
||||
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
||||
<!-- Twitter meta tags -->
|
||||
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
||||
<?php endif; ?>
|
||||
<?php if ($projectImageUrl): ?>
|
||||
<!-- Open Graph image -->
|
||||
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
||||
<!-- Twitter image -->
|
||||
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
||||
<?php endif; ?>
|
||||
<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=Inter:wght@400;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--bg-color-start: #6a11cb;
|
||||
--bg-color-end: #2575fc;
|
||||
--text-color: #ffffff;
|
||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||
--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>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Cozy Corner Cafe</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<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=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--primary-color: #6b7b62;
|
||||
--secondary-color: #8e9b83;
|
||||
--background-color: #8e9b83;
|
||||
--surface-color: #a2b199;
|
||||
--text-color: #424c3b;
|
||||
--heading-font: 'Playfair Display', serif;
|
||||
--body-font: 'Lato', sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--body-font);
|
||||
color: var(--text-color);
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: var(--heading-font);
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: linear-gradient(rgba(66, 76, 59, 0.7), rgba(66, 76, 59, 0.7)), url('https://m.media-amazon.com/images/I/41LmVVgTulL.jpg') no-repeat center center;
|
||||
background-size: cover;
|
||||
padding: 6rem 0;
|
||||
color: #f2eae2;
|
||||
}
|
||||
|
||||
.hero h1, .hero .lead {
|
||||
text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: var(--primary-color);
|
||||
border-color: var(--primary-color);
|
||||
border-radius: 0.5rem;
|
||||
padding: 0.75rem 1.5rem;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background-color: #5a6a54;
|
||||
border-color: #5a6a54;
|
||||
}
|
||||
|
||||
#menu .card {
|
||||
border: none;
|
||||
border-radius: 0.5rem;
|
||||
background-color: var(--surface-color);
|
||||
}
|
||||
|
||||
#menu .card .card-img-top {
|
||||
height: 250px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: var(--text-color);
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div class="card">
|
||||
<h1>Analyzing your requirements and generating your website…</h1>
|
||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
||||
<span class="sr-only">Loading…</span>
|
||||
</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>
|
||||
|
||||
<header>
|
||||
<nav class="navbar navbar-expand-lg navbar-light fixed-top shadow-sm">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="#">The Cozy Corner</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
||||
<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="#home">Home</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#menu">Menu</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>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#" data-bs-toggle="modal" data-bs-target="#cartModal">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-cart" viewBox="0 0 16 16">
|
||||
<path d="M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM3.102 4l1.313 7h8.17l1.313-7H3.102zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/>
|
||||
</svg>
|
||||
<span class="badge bg-primary rounded-pill" id="cart-count">0</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section id="home" class="hero text-center">
|
||||
<div class="container">
|
||||
<h1 class="display-3">Welcome to The Cozy Corner Cafe</h1>
|
||||
<p class="lead">Where every cup is a warm hug.</p>
|
||||
<a href="#menu" class="btn btn-primary btn-lg">View Our Menu</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="menu" class="py-5">
|
||||
<div class="container">
|
||||
<h2 class="text-center mb-5">Our Menu</h2>
|
||||
<div class="row">
|
||||
<!-- Menu Item 1 -->
|
||||
<div class="col-lg-4 col-md-6 mb-4">
|
||||
<div class="card h-100">
|
||||
<img src="https://www.beserk.com.au/cdn/shop/files/gothic-gifts-striped-bat-wing-teacup-5.jpg?v=1721173226&width=600" class="card-img-top" alt="Classic Espresso">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Classic Espresso</h5>
|
||||
<p class="card-text">A rich and aromatic shot of pure coffee bliss.</p>
|
||||
<p class="card-text fw-bold">$3.00</p>
|
||||
<button class="btn btn-primary" onclick="addToCart('Classic Espresso', 3.00)">Buy</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Menu Item 2 -->
|
||||
<div class="col-lg-4 col-md-6 mb-4">
|
||||
<div class="card h-100">
|
||||
<img src="https://www.loveramics.co.uk/cdn/shop/products/C088-22BBK_0d522fb4-f764-4804-aa03-289a2aa451e2_1200x800.jpg?v=1645085617" class="card-img-top" alt="Creamy Latte">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Creamy Latte</h5>
|
||||
<p class="card-text">Espresso with steamed milk, topped with a light layer of foam.</p>
|
||||
<p class="card-text fw-bold">$4.50</p>
|
||||
<button class="btn btn-primary" onclick="addToCart('Creamy Latte', 4.50)">Buy</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Menu Item 3 -->
|
||||
<div class="col-lg-4 col-md-6 mb-4">
|
||||
<div class="card h-100">
|
||||
<img src="https://i.ytimg.com/vi/Ldgm3YD-tMQ/maxresdefault.jpg" class="card-img-top" alt="Chocolate Croissant">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Chocolate Croissant</h5>
|
||||
<p class="card-text">Flaky, buttery pastry with a rich dark chocolate filling.</p>
|
||||
<p class="card-text fw-bold">$3.50</p>
|
||||
<button class="btn btn-primary" onclick="addToCart('Chocolate Croissant', 3.50)">Buy</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="about" class="py-5" style="background-color: var(--surface-color);">
|
||||
<div class="container">
|
||||
<h2 class="text-center mb-4">About Us</h2>
|
||||
<p class="lead text-center mx-auto" style="max-width: 800px;">Founded in 2023, The Cozy Corner Cafe is a place for friends to gather, for students to study, and for everyone to enjoy a moment of peace with a delicious cup of coffee. We believe in quality, community, and the simple joy of a great brew.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="contact" class="py-5">
|
||||
<div class="container">
|
||||
<h2 class="text-center mb-4">Contact Us</h2>
|
||||
<form class="mx-auto" style="max-width: 600px;">
|
||||
<div class="mb-3">
|
||||
<label for="name" class="form-label">Name</label>
|
||||
<input type="text" class="form-control" id="name" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="email" class="form-label">Email</label>
|
||||
<input type="email" class="form-control" id="email" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="message" class="form-label">Message</label>
|
||||
<textarea class="form-control" id="message" rows="4" required></textarea>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Send Message</button>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<!-- Cart Modal -->
|
||||
<div class="modal fade" id="cartModal" tabindex="-1" aria-labelledby="cartModalLabel" aria-hidden="true">
|
||||
<div class="modal-dialog modal-lg">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="cartModalLabel">Shopping Cart</h5>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div id="cart-items">
|
||||
<!-- Cart items will be injected here by JavaScript -->
|
||||
</div>
|
||||
<hr>
|
||||
<div class="text-end">
|
||||
<h5>Total: $<span id="cart-total">0.00</span></h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
||||
<button type="button" class="btn btn-primary">Checkout</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<footer>
|
||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
||||
</footer>
|
||||
|
||||
<footer class="py-4 text-center">
|
||||
<div class="container">
|
||||
<p>© 2025 The Cozy Corner Cafe. All Rights Reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script>
|
||||
// Smooth scrolling for anchor links
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener('click', function (e) {
|
||||
e.preventDefault();
|
||||
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
||||
behavior: 'smooth'
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
// Shopping Cart Logic
|
||||
let cart = [];
|
||||
|
||||
function addToCart(name, price) {
|
||||
// Check if item is already in cart
|
||||
const existingItem = cart.find(item => item.name === name);
|
||||
if (existingItem) {
|
||||
existingItem.quantity++;
|
||||
} else {
|
||||
cart.push({ name, price, quantity: 1 });
|
||||
}
|
||||
renderCart();
|
||||
}
|
||||
|
||||
function removeFromCart(name) {
|
||||
const itemIndex = cart.findIndex(item => item.name === name);
|
||||
if (itemIndex > -1) {
|
||||
cart.splice(itemIndex, 1);
|
||||
}
|
||||
renderCart();
|
||||
}
|
||||
|
||||
function updateQuantity(name, quantity) {
|
||||
const item = cart.find(item => item.name === name);
|
||||
if (item) {
|
||||
item.quantity = parseInt(quantity);
|
||||
if (item.quantity <= 0) {
|
||||
removeFromCart(name);
|
||||
} else {
|
||||
renderCart();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function renderCart() {
|
||||
const cartItemsContainer = document.getElementById('cart-items');
|
||||
const cartTotalEl = document.getElementById('cart-total');
|
||||
const cartCountEl = document.getElementById('cart-count');
|
||||
let total = 0;
|
||||
let totalItems = 0;
|
||||
|
||||
cartItemsContainer.innerHTML = '';
|
||||
|
||||
if (cart.length === 0) {
|
||||
cartItemsContainer.innerHTML = '<p>Your cart is empty.</p>';
|
||||
}
|
||||
|
||||
cart.forEach(item => {
|
||||
total += item.price * item.quantity;
|
||||
totalItems += item.quantity;
|
||||
cartItemsContainer.innerHTML += `
|
||||
<div class="d-flex justify-content-between align-items-center mb-3">
|
||||
<div>
|
||||
<h6 class="my-0">${item.name}</h6>
|
||||
</div>
|
||||
<div class="d-flex align-items-center">
|
||||
<input type="number" class="form-control form-control-sm" value="${item.quantity}" onchange="updateQuantity('${item.name}', this.value)" style="width: 60px; margin-right: 10px;">
|
||||
<span class="text-muted">${(item.price * item.quantity).toFixed(2)}</span>
|
||||
<button class="btn btn-sm btn-danger ms-2" onclick="removeFromCart('${item.name}')">Remove</button>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
});
|
||||
|
||||
cartTotalEl.textContent = total.toFixed(2);
|
||||
cartCountEl.textContent = totalItems;
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
x
Reference in New Issue
Block a user