A responsive single-page web application built with React.js and Tailwind CSS.
npm install
npm run devOpen http://localhost:3000
- React.js 18.3
- Vite
- Tailwind CSS 3.4
src/
βββ components/
β βββ Header.jsx
β βββ Hero.jsx
β βββ About.jsx
β βββ Services.jsx
β βββ ContactForm.jsx
β βββ Footer.jsx
βββ App.jsx
βββ main.jsx
βββ index.css
Endpoint: POST https://vernanbackend.ezlab.in/api/contact-us/
Request:
{
"name": "Test user",
"email": "testuser@gmail.com",
"phone": "908765498",
"message": "This is a message"
}Validation:
- All fields required
- Email must be valid format
- Shows "Form Submitted" message on success (status 200)
npm run buildOutput in dist/ folder.