A contact application built with React, TypeScript, and Tailwind CSS.
VITE, React, TypeScript, Tailwind CSS, React Router DOM
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
git clone https://github.com/BlackHatDevX/contactapp
cd contactapp
yarn install
yarn devyarn build
(app will be available in dist).
├── eslint.config.js
├── index.html
├── package.json
├── public
│ └── vite.svg
├── readme.md
├── src
│ ├── App.tsx
│ ├── assets
│ │ └── react.svg
│ ├── components
│ │ └── ContactDataRenderer.tsx
│ ├── index.css
│ ├── main.tsx
│ ├── pages
│ │ └── home.tsx
│ └── vite-env.d.ts
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
├── vite.config.ts
└── yarn.lock