├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components ├── ADialog.tsx ├── AccordionDemo.tsx ├── Employee.tsx └── TextAnimation.tsx ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── next.svg ├── profile.png ├── united states.svg └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/ADialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/components/ADialog.tsx -------------------------------------------------------------------------------- /components/AccordionDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/components/AccordionDemo.tsx -------------------------------------------------------------------------------- /components/Employee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/components/Employee.tsx -------------------------------------------------------------------------------- /components/TextAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/components/TextAnimation.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/public/profile.png -------------------------------------------------------------------------------- /public/united states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/public/united states.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Introduction-to-Radix-UI/HEAD/tsconfig.json --------------------------------------------------------------------------------