ui.melanys.me/ ├── node_modules/ ├── public/ # Public assets (favicon, images, etc.) │ └── assets/ ├── src/ │ ├── app/ │ │ ├── page.tsx # The main page component │ │ ├── layout.tsx # The main layout component │ │ └── favicon.ico # The favicon │ ├── components/ # Reusable UI components (buttons, cards, etc.) │ ├── styles/ # Tailwind configurations and custom styles │ ├── utils/ # Utility functions (helpers, hooks, etc.) │ │ └── constants.ts # Constants (variables, colors, etc.) │ ├── data/ # Static data or JSON files │ └── fonts/ # Custom fonts ├── .gitignore ├── .eslintrc.json ├── .prettierrc.json ├── next-env.d.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── tailwind.config.ts ├── tsconfig.json ├── project-structure.md ├── LICENSE ├── CONTRIBUTING.md └── README.md