Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Detection Models</title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | |
</head> | |
<body class="bg-gray-100 h-screen flex items-center justify-center"> | |
<div class="bg-white p-8 rounded shadow-md w-full max-w-sm"> | |
<h1 class="text-2xl font-bold mb-4 text-center">Choose a Detection Model</h1> | |
<div class="flex flex-col space-y-4"> | |
<a href="/pill_upload.html" class="bg-blue-500 text-white text-center py-2 rounded hover:bg-blue-600">Pill Detection</a> | |
<a href="/wheat_upload.html" class="bg-green-500 text-white text-center py-2 rounded hover:bg-green-600">Wheat Grain Detection</a> | |
</div> | |
</div> | |
</body> | |
</html> | |