75 lines
3.1 KiB
PHP
75 lines
3.1 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>Talk TEA</title>
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Google Fonts: Nunito -->
|
|
<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=Nunito:wght@400;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
|
|
<!-- SEO and Meta Tags -->
|
|
<meta name="description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'Talk TEA - Comunicação Alternativa para Crianças com Autismo'); ?>">
|
|
<meta property="og:title" content="Talk TEA">
|
|
<meta property="og:description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'Talk TEA - Comunicação Alternativa para Crianças com Autismo'); ?>">
|
|
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="navbar navbar-light bg-white shadow-sm">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">
|
|
Talk TEA
|
|
</a>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container my-5">
|
|
<h1 class="mb-4">Necessidades</h1>
|
|
|
|
<div class="row row-cols-2 row-cols-md-3 row-cols-lg-4 g-4">
|
|
|
|
<?php
|
|
$cards = [
|
|
['text' => 'Estou com fome', 'icon' => '🍽️'],
|
|
['text' => 'Estou com sede', 'icon' => '💧'],
|
|
['text' => 'Quero ir ao banheiro', 'icon' => '🚽'],
|
|
['text' => 'Estou cansado', 'icon' => '😴'],
|
|
['text' => 'Quero brincar', 'icon' => '🧸'],
|
|
['text' => 'Preciso de ajuda', 'icon' => '🙋'],
|
|
];
|
|
|
|
foreach ($cards as $card):
|
|
?>
|
|
<div class="col">
|
|
<div class="card h-100 text-center pecs-card shadow-sm">
|
|
<div class="card-body d-flex flex-column justify-content-center align-items-center p-3">
|
|
<div style="font-size: 4rem; line-height: 1;"><?php echo $card['icon']; ?></div>
|
|
<h5 class="card-title mt-3 mb-0"><?php echo htmlspecialchars($card['text']); ?></h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="text-center text-muted py-4">
|
|
<p>© <?php echo date("Y"); ?> Talk TEA. Todos os direitos reservados.</p>
|
|
</footer>
|
|
|
|
<!-- Bootstrap 5 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>
|