A responsive React application that displays a list of contacts fetched from a public API. Built using React, and Tailwind CSS.
- Fetches contacts from JSONPlaceholder
- Responsive layout for desktop and mobile
- Styled with Tailwind CSS
git clone git@github.com:cherisechan/contacts.git
cd contactsnpm installnpm run devOpen http://localhost:5173 in your browser to view the app.
- React – UI Library
- Vite – Development server and bundler
- Tailwind CSS – Utility-first CSS framework
- JSONPlaceholder – Free fake API for user data
contacts/
├── public/
│ └── index.html
├── src/
│ ├── components/
│ │ └── ContactCard.jsx
│ ├── App.jsx
│ ├── index.css
│ └── main.jsx
├── postcss.config.js
├── tailwind.config.js
├── package.json
└── README.md