BiteWiseFinal / static /index.html
anaygupta's picture
Upload 12 files
9373226 verified
raw
history blame contribute delete
720 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BiteWise API</title>
<style>
body { font-family: Arial, sans-serif; background: #f5f4f0; color: #1a1a1a; margin: 0; padding: 40px; }
.card { max-width: 720px; background: #fff; border: 1px solid #e8e6e0; border-radius: 16px; padding: 24px; }
code { background: #f7f7f7; padding: 2px 6px; border-radius: 6px; }
</style>
</head>
<body>
<div class="card">
<h1>BiteWise is running</h1>
<p>Use <code>POST /api/adapt</code> to adapt a recipe for vegan, keto, or both.</p>
<p>Open <code>/docs</code> to test the API.</p>
</div>
</body>
</html>