You can check it out here
Made in LANARS
main-preview.mp4
burger-menu-preview.mp4
This repo provides implementation of static site with animated transitions using React with:
- Vite
- Typescript
- SCSS
- Framer Motion
<AnimatePresence>
{isVisible && (
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
/>
)}
</AnimatePresence>
Run npm run dev a basic development server
Run npm run build to build the project