2024-12-13 09:57:12 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>VPN Service</title>
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
<script>
|
|
|
|
tailwind.config = {
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
'dark': '#121212',
|
|
|
|
'dark-lighter': '#1e1e1e'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2024-12-30 07:07:53 +00:00
|
|
|
<!-- Import pricing.js from the correct path -->
|
|
|
|
<script type="module" src="/static/js/pricing.js" defer></script>
|
2024-12-13 09:57:12 +00:00
|
|
|
</head>
|
|
|
|
<body class="bg-dark text-gray-100">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|