Files
NillanHendrix ce2d03f7d6 Initial commit: React + Vite plant app with footer navigation
- Wiki page with 8 plant entries, search, and category/difficulty filters
- Calendar page with monthly grid, task scheduling, and upcoming tasks
- My Plants page with personal collection, health tracking, and add/edit/remove
- Footer navigation with Wiki, Calendar, and My Plants tabs

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-14 07:10:40 +02:00

14 lines
361 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>plant-app</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>