FE repository for Irumoa project
This is a Next.js project with Emotion CSS for styling and a custom theme system.
- Framework: Next.js 16
- Language: TypeScript
- Styling: Emotion CSS
- Package Manager: pnpm
First, install dependencies:
pnpm installThen, run the development server:
pnpm devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
The project includes a custom theme system with light and dark modes. Use the useTheme hook to access theme values and toggle between modes:
import { useTheme } from "@/src/components/provider/ThemeProvider";
const { theme, mode, toggleTheme } = useTheme();