From 903cee27b9a06c6700a769bdc07184b1f430e3d5 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Mon, 26 Jan 2026 21:51:22 +1100 Subject: [PATCH] Add frontend App.tsx with welcome page --- frontend/src/App.tsx | 83 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 frontend/src/App.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx new file mode 100644 index 0000000..d628be3 --- /dev/null +++ b/frontend/src/App.tsx @@ -0,0 +1,83 @@ +import { useState } from 'react' + +function App() { + const [count, setCount] = useState(0) + + return ( +
+
+
+

+ 🏠 Family Hub +

+

+ Home Management System +

+ +
+

Welcome!

+

+ Family Hub is starting up. The backend API should be available at{' '} + + http://localhost:8000/docs + +

+ +
+ +
+ +
+
+

✅ Phase 1 Complete:

+
    +
  • Backend API with authentication
  • +
  • Database models for users, chores, meals
  • +
  • React frontend foundation
  • +
  • Docker setup
  • +
+
+ +
+

🚧 Coming Next (Phase 2):

+
    +
  • Chore management system
  • +
  • User login interface
  • +
  • Dashboard with today's tasks
  • +
  • Assignment and completion tracking
  • +
+
+
+
+ +
+
+

📅 Calendar

+

Phase 3

+
+
+

🍽️ Meals

+

Phase 4

+
+
+

🏡 Home Assistant

+

Phase 6

+
+
+
+
+
+ ) +} + +export default App