* chore: cleanup nextjs project * feat(shadcn-ui): initialize shadcn ui libs * feat: update landing app with shadcnI integration * feat: add path mapping for shadcn-ui atoms in tsconfig * feat: remove unused tw-animate-css import * feat: migrate header component * feat: migrate hero component * feat: migrate features component * feat: migrate community component * feat: migrate learning resources component * feat: migrate testimonials component * feat: migrate call to action component * feat: migrate footer component * feat: migrate simple theme switcher component * feat: update dependencies in package.json and package-lock.json * chore: add tailwind-animate-css package * feat: initialize index file to export atoms * chore: remove pnpm, accidentally added out of habit
38 lines
693 B
TypeScript
38 lines
693 B
TypeScript
import {
|
|
LuArrowDown as ArrowDownIcon,
|
|
LuBookOpen as BookOpenIcon,
|
|
LuCode as CodeIcon,
|
|
LuFacebook as FacebookIcon,
|
|
LuInstagram as InstagramIcon,
|
|
LuLaptop as LaptopIcon,
|
|
LuMenu as MenuIcon,
|
|
LuMessageCircle as MessageCircleIcon,
|
|
LuMoon as MoonIcon,
|
|
LuQuote as QuoteIcon,
|
|
LuShare2 as Share2Icon,
|
|
LuSparkles as SparklesIcon,
|
|
LuSun as SunIcon,
|
|
LuUsers as UsersIcon,
|
|
LuVideo as VideoIcon,
|
|
LuX as XIcon,
|
|
} from 'react-icons/lu';
|
|
|
|
export {
|
|
ArrowDownIcon,
|
|
BookOpenIcon,
|
|
CodeIcon,
|
|
FacebookIcon,
|
|
InstagramIcon,
|
|
LaptopIcon,
|
|
MenuIcon,
|
|
MessageCircleIcon,
|
|
MoonIcon,
|
|
QuoteIcon,
|
|
Share2Icon,
|
|
SparklesIcon,
|
|
SunIcon,
|
|
UsersIcon,
|
|
VideoIcon,
|
|
XIcon,
|
|
};
|