Objective
Convert the existing PetVerse application from React + TypeScript + Vite into a standard HTML, CSS, and JavaScript project.
Requirements
- Remove React and TypeScript dependencies.
- Convert all
.tsx components into HTML pages.
- Replace
className with class.
- Convert Tailwind CSS classes into a standalone
style.css.
- Rewrite React state and event handlers using vanilla JavaScript.
- Keep the existing UI design and layout.
- Preserve all images and assets.
- Ensure the project runs by simply opening
index.html in a browser.
Expected Folder Structure
PetVerse/
├── index.html
├── css/
│ └── style.css
├── js/
│ └── script.js
├── images/
└── assets/
Acceptance Criteria
- No React.
- No TypeScript.
- No Vite.
- No npm installation required.
- Works in Chrome, Edge, and Firefox.
- Fully responsive design.
Objective
Convert the existing PetVerse application from React + TypeScript + Vite into a standard HTML, CSS, and JavaScript project.
Requirements
.tsxcomponents into HTML pages.classNamewithclass.style.css.index.htmlin a browser.Expected Folder Structure
PetVerse/
├── index.html
├── css/
│ └── style.css
├── js/
│ └── script.js
├── images/
└── assets/
Acceptance Criteria