Spaces:
Running
Running
File size: 1,992 Bytes
bbf5330 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pathway Guardian - Immigrant Resource Hub</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/hero.js"></script>
<script src="components/features.js"></script>
<script src="components/benefits.js"></script>
<script src="components/language.js"></script>
<script src="components/legal.js"></script>
<script src="components/gamification.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gradient-to-br from-cyan-50 to-blue-100 text-gray-800">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<custom-hero></custom-hero>
<custom-features></custom-features>
<custom-benefits></custom-benefits>
<custom-language></custom-language>
<custom-legal></custom-legal>
<custom-gamification></custom-gamification>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
// Initialize translation API (mock)
document.addEventListener('DOMContentLoaded', function() {
const languageSelect = document.getElementById('language-select');
if(languageSelect) {
languageSelect.addEventListener('change', function() {
alert(`Translating content to ${this.value}...`);
// In a real app, this would call your translation API
});
}
});
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |