Files
AI-FFL/public/index.html
2025-09-24 18:54:38 -05:00

26 lines
980 B
HTML

<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./output.css" rel="stylesheet">
<title>AI Fantasy NFL</title>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<div class="flex flex-col min-h-screen">
<header class="p-4 border-b border-gray-800 text-center text-2xl font-bold">AI Fantasy NFL</header>
<main class="flex flex-1">
<aside class="hidden md:block w-1/5 p-4 border-r border-gray-800 bg-gray-950">Left Column</aside>
<section class="w-full md:w-3/5 p-4">Main Content</section>
<aside class="hidden md:block w-1/5 p-4 border-l border-gray-800 bg-gray-950">Right Column</aside>
</main>
<footer class="p-4 border-t border-gray-800 text-center text-sm text-gray-400">&copy; 2025 AI Fantasy NFL</footer>
</div>
<script src="../src/app.js"></script>
</body>
</html>