122 lines
5.7 KiB
PHP
122 lines
5.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MECoding Studio - Catálogo de Produtos</title>
|
|
<meta name="description" content="Catálogo de produtos de expositores e estantarias. Built with Flatlogic Generator.">
|
|
<meta name="keywords" content="expositores, estantarias, móveis comerciais, design de loja, varejo, display de produtos, gôndolas, prateleiras, Built with Flatlogic Generator">
|
|
<meta property="og:title" content="MECoding Studio - Catálogo de Produtos">
|
|
<meta property="og:description" content="Catálogo de produtos de expositores e estantarias. Built with Flatlogic Generator.">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Google Fonts -->
|
|
<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=Lato:wght@400;700&family=Montserrat:wght@700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<header class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">MECoding Studio</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="#">Home</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#">Produtos</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#">Sobre</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#">Contato</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero-section">
|
|
<div class="container">
|
|
<h1>Soluções Inovadoras em Expositores</h1>
|
|
<p>Design e funcionalidade para valorizar seus produtos e impulsionar suas vendas.</p>
|
|
<a href="#" class="btn btn-primary btn-lg">Conheça Nossos Produtos</a>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Products Section -->
|
|
<main class="container products-section">
|
|
<h2 class="text-center mb-5">Produtos em Destaque</h2>
|
|
<div class="row g-4">
|
|
<?php
|
|
$products = [
|
|
[
|
|
'title' => 'Estante Modular ',
|
|
'image' => 'https://images.pexels.com/photos/5705080/pexels-photo-5705080.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
|
|
],
|
|
[
|
|
'title' => 'Display de Balcão',
|
|
'image' => 'https://images.pexels.com/photos/1148820/pexels-photo-1148820.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
|
|
],
|
|
[
|
|
'title' => 'Gôndola Central',
|
|
'image' => 'https://images.pexels.com/photos/271816/pexels-photo-271816.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
|
|
],
|
|
[
|
|
'title' => 'Estante de Parede',
|
|
'image' => 'https://images.pexels.com/photos/2089698/pexels-photo-2089698.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
|
|
],
|
|
[
|
|
'title' => 'Mesa de Centro',
|
|
'image' => 'https://images.pexels.com/photos/37347/office-sitting-room-executive-sitting.jpg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
|
|
],
|
|
[
|
|
'title' => 'Estante de Livros',
|
|
'image' => 'https://images.pexels.com/photos/159844/cellular-education-classroom-159844.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'
|
|
]
|
|
];
|
|
|
|
$is_first = true;
|
|
foreach ($products as $product) {
|
|
$link = $is_first ? 'product.php' : '#';
|
|
echo '
|
|
<div class="col-md-6 col-lg-4">
|
|
<div class="card product-card">
|
|
<img src="' . htmlspecialchars($product['image']) . '" class="card-img-top" alt="' . htmlspecialchars($product['title']) . '">
|
|
<div class="card-body">
|
|
<h5 class="card-title">' . htmlspecialchars($product['title']) . '</h5>
|
|
<a href="' . $link . '" class="btn btn-secondary">Ver Detalhes</a>
|
|
</div>
|
|
</div>
|
|
</div>';
|
|
$is_first = false;
|
|
}
|
|
?>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container text-center">
|
|
<p>© <?php echo date("Y"); ?> MECoding Studio. Todos os direitos reservados.</p>
|
|
<p>
|
|
<a href="#">Termos de Serviço</a> |
|
|
<a href="#">Política de Privacidade</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|