A modern, responsive education platform with light/dark theme support and yellow accent colors.
├── backend/
│ └── index.ts # Main Hono server (HTTP trigger)
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React app
│ │ ├── Header.tsx # Navigation header
│ │ ├── Footer.tsx # Footer with social links
│ │ ├── CoreSection.tsx # Individual core section
│ │ ├── LessonCard.tsx # Lesson card component
│ │ └── CoreDetail.tsx # Detailed core page
│ ├── pages/
│ │ ├── Home.tsx # Main landing page ✅
│ │ ├── About.tsx # About page ✅
│ │ └── Contact.tsx # Contact page ✅
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
├── shared/
│ ├── types.ts # Shared TypeScript types
│ └── data.ts # Course data
└── README.md