├── .gitignore
├── index.html
├── package.json
├── postcss.config.cjs
├── public
├── hero-bck.jpg
├── myavatar.glb
└── vite.svg
├── readme.md
├── src
├── App.tsx
├── assets
│ └── react.svg
├── components
│ ├── AvatarCanvas.tsx
│ ├── Hero.tsx
│ └── MyLoader.tsx
├── index.css
├── main.tsx
└── vite-env.d.ts
├── tailwind.config.cjs
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/.gitignore
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/index.html
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/package.json
--------------------------------------------------------------------------------
/postcss.config.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/postcss.config.cjs
--------------------------------------------------------------------------------
/public/hero-bck.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/public/hero-bck.jpg
--------------------------------------------------------------------------------
/public/myavatar.glb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/public/myavatar.glb
--------------------------------------------------------------------------------
/public/vite.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/public/vite.svg
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/readme.md
--------------------------------------------------------------------------------
/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/src/App.tsx
--------------------------------------------------------------------------------
/src/assets/react.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/src/assets/react.svg
--------------------------------------------------------------------------------
/src/components/AvatarCanvas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/src/components/AvatarCanvas.tsx
--------------------------------------------------------------------------------
/src/components/Hero.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/src/components/Hero.tsx
--------------------------------------------------------------------------------
/src/components/MyLoader.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/src/components/MyLoader.tsx
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/src/index.css
--------------------------------------------------------------------------------
/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/src/main.tsx
--------------------------------------------------------------------------------
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/tailwind.config.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/tailwind.config.cjs
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/tsconfig.json
--------------------------------------------------------------------------------
/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/tsconfig.node.json
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Thabish-Kader/avatar-in-web/HEAD/vite.config.ts
--------------------------------------------------------------------------------