├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── images │ ├── 01.jpg │ ├── 02.jpg │ └── 03.jpg └── vite.svg ├── src ├── App.tsx ├── animations │ └── galleryAnimations.tsx ├── assets │ ├── display │ │ ├── detail.png │ │ └── home.png │ └── react.svg ├── components │ ├── Background.tsx │ ├── Gallery.tsx │ ├── ImageCard.tsx │ └── gallery │ │ └── detail │ │ ├── DetailAnimations.tsx │ │ ├── DetailData.ts │ │ ├── DetailImage.tsx │ │ ├── DetailInfo.tsx │ │ └── index.tsx ├── constants │ └── galleryData.ts ├── data │ └── galleryElements.ts ├── hooks │ ├── use3DTilt.ts │ └── useScrollInView.ts ├── index.css ├── main.tsx ├── types │ └── gallery.types.ts ├── utils │ └── domHelpers.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/public/images/01.jpg -------------------------------------------------------------------------------- /public/images/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/public/images/02.jpg -------------------------------------------------------------------------------- /public/images/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/public/images/03.jpg -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/animations/galleryAnimations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/animations/galleryAnimations.tsx -------------------------------------------------------------------------------- /src/assets/display/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/assets/display/detail.png -------------------------------------------------------------------------------- /src/assets/display/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/assets/display/home.png -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/components/Background.tsx -------------------------------------------------------------------------------- /src/components/Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/components/Gallery.tsx -------------------------------------------------------------------------------- /src/components/ImageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/components/ImageCard.tsx -------------------------------------------------------------------------------- /src/components/gallery/detail/DetailAnimations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/components/gallery/detail/DetailAnimations.tsx -------------------------------------------------------------------------------- /src/components/gallery/detail/DetailData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/components/gallery/detail/DetailData.ts -------------------------------------------------------------------------------- /src/components/gallery/detail/DetailImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/components/gallery/detail/DetailImage.tsx -------------------------------------------------------------------------------- /src/components/gallery/detail/DetailInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/components/gallery/detail/DetailInfo.tsx -------------------------------------------------------------------------------- /src/components/gallery/detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/components/gallery/detail/index.tsx -------------------------------------------------------------------------------- /src/constants/galleryData.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/galleryElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/data/galleryElements.ts -------------------------------------------------------------------------------- /src/hooks/use3DTilt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/hooks/use3DTilt.ts -------------------------------------------------------------------------------- /src/hooks/useScrollInView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/hooks/useScrollInView.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/types/gallery.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/types/gallery.types.ts -------------------------------------------------------------------------------- /src/utils/domHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/src/utils/domHelpers.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmiyaK532/react-cozy/HEAD/vite.config.ts --------------------------------------------------------------------------------