- react: JavaScript library for building user interfaces.
- react-dom: Provides DOM-specific methods for React.
- typescript: Adds static typing to JavaScript.
- eslint: Pluggable JavaScript linter.
- tailwindcss: Utility-first CSS framework for rapid UI development.
- postcss: Tool for transforming CSS with JavaScript plugins.
- vite: Next-generation front-end build tool.
- autoprefixer: PostCSS plugin to parse CSS and add vendor prefixes.
- src: Contains the main source code of the TypeScript project.
- src/components: Houses the reusable components of the application.
- src/interface: Defines interfaces used throughout the project.
- src/assets: Stores various assets used in the application.
- src/assets/pictures: Contains pictures used within the application.
- public: Holds static files that will be served by the web server.
1.Clone the Emmanuel-bio repository:
git clone https://github.com/Goldennboyy/Emmanuel-bio
2.Install the dependencies with one of the package managers listed below:
pnpm install
bun install
npm install
yarn install
3.Start the development mode:
pnpm dev
bun dev
npm run dev
yarn dev