├── .gitignore ├── README.md ├── app ├── (landing-page) │ ├── EighthSection │ │ └── page.tsx │ ├── FifthSection │ │ └── page.tsx │ ├── FirstSection │ │ └── page.tsx │ ├── FourthSection │ │ ├── flubber.d.ts │ │ ├── page.tsx │ │ ├── paths.ts │ │ └── use-flubber.ts │ ├── Navbar │ │ ├── _components │ │ │ ├── buttons.tsx │ │ │ ├── logo.tsx │ │ │ └── menu.tsx │ │ └── navbar.tsx │ ├── SecondSection │ │ └── page.tsx │ ├── SeventhSection │ │ └── page.tsx │ ├── SixthSection │ │ ├── page.tsx │ │ └── slider.d.ts │ ├── ThirdSection │ │ └── page.tsx │ ├── footer │ │ └── page.tsx │ └── page.tsx ├── api │ └── contact │ │ └── route.ts ├── contact │ ├── FirstSection │ │ └── page.tsx │ ├── Navbar │ │ ├── _components │ │ │ ├── buttons.tsx │ │ │ ├── logo.tsx │ │ │ └── menu.tsx │ │ └── navbar.tsx │ ├── footer │ │ └── page.tsx │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── pricing │ ├── FirstSection │ │ └── page.tsx │ ├── Navbar │ │ ├── _components │ │ │ ├── buttons.tsx │ │ │ ├── logo.tsx │ │ │ └── menu.tsx │ │ └── navbar.tsx │ ├── SecondSection │ │ └── page.tsx │ ├── footer │ │ └── page.tsx │ └── page.tsx └── product │ ├── EighthSection │ └── page.tsx │ ├── FifthSection │ └── page.tsx │ ├── FirstSection │ └── page.tsx │ ├── FourthSection │ └── page.tsx │ ├── Navbar │ ├── _components │ │ ├── buttons.tsx │ │ ├── logo.tsx │ │ └── menu.tsx │ └── navbar.tsx │ ├── SecondSection │ └── page.tsx │ ├── SeventhSection │ └── page.tsx │ ├── SixthSection │ └── page.tsx │ ├── ThirdSection │ └── page.tsx │ ├── footer │ └── page.tsx │ └── page.tsx ├── components.json ├── components └── ui │ ├── accordion.tsx │ ├── button.tsx │ ├── form.tsx │ ├── input.tsx │ ├── label.tsx │ ├── navigation-menu.tsx │ ├── select.tsx │ ├── sheet.tsx │ ├── switch.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ └── use-toast.ts ├── lib └── utils.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── images │ ├── bird-logo.png │ ├── drawing.svg │ ├── icons │ │ ├── .DS_Store │ │ ├── checkmark.png │ │ ├── clock.png │ │ ├── contacts.png │ │ ├── gears.png │ │ ├── icons8-bookmark-94 (1).png │ │ ├── icons8-bookmark-94.png │ │ ├── icons8-close-94.png │ │ ├── icons8-document-94.png │ │ ├── icons8-edit-94.png │ │ ├── icons8-folder-94.png │ │ ├── icons8-news-94.png │ │ ├── icons8-ok-94.png │ │ ├── icons8-picture-94.png │ │ ├── icons8-plus-94.png │ │ ├── icons8-restart-94 (1).png │ │ ├── icons8-scroll-94.png │ │ ├── icons8-synchronize-94.png │ │ ├── lightbulb.png │ │ ├── lock.png │ │ ├── menu.png │ │ ├── puzzle.png │ │ ├── refresh-2.png │ │ └── refresh.png │ ├── image-1.png │ ├── image-2.png │ ├── logo │ │ ├── logo-1.svg │ │ ├── logo-10.svg │ │ ├── logo-11.svg │ │ ├── logo-12.svg │ │ ├── logo-13.svg │ │ ├── logo-14.svg │ │ ├── logo-15.svg │ │ ├── logo-16.svg │ │ ├── logo-17.svg │ │ ├── logo-18.svg │ │ ├── logo-19.svg │ │ ├── logo-2.svg │ │ ├── logo-3.svg │ │ ├── logo-4.svg │ │ ├── logo-5.svg │ │ ├── logo-6.svg │ │ ├── logo-7.svg │ │ ├── logo-8.svg │ │ ├── logo-9.svg │ │ └── logo.svg │ ├── tab-1.webp │ ├── tab-2.webp │ ├── tab-3.webp │ ├── tab-4.webp │ ├── tab-5.webp │ └── tab-6.webp ├── next.svg ├── vercel.svg └── videos │ ├── check.gif │ ├── hero-1.mp4 │ ├── hero.mp4 │ ├── video-2.mp4 │ ├── video-3.mp4 │ └── video-4.mp4 ├── tailwind.config.js ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/README.md -------------------------------------------------------------------------------- /app/(landing-page)/EighthSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/EighthSection/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/FifthSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/FifthSection/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/FirstSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/FirstSection/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/FourthSection/flubber.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'flubber' 2 | -------------------------------------------------------------------------------- /app/(landing-page)/FourthSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/FourthSection/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/FourthSection/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/FourthSection/paths.ts -------------------------------------------------------------------------------- /app/(landing-page)/FourthSection/use-flubber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/FourthSection/use-flubber.ts -------------------------------------------------------------------------------- /app/(landing-page)/Navbar/_components/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/Navbar/_components/buttons.tsx -------------------------------------------------------------------------------- /app/(landing-page)/Navbar/_components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/Navbar/_components/logo.tsx -------------------------------------------------------------------------------- /app/(landing-page)/Navbar/_components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/Navbar/_components/menu.tsx -------------------------------------------------------------------------------- /app/(landing-page)/Navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/Navbar/navbar.tsx -------------------------------------------------------------------------------- /app/(landing-page)/SecondSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/SecondSection/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/SeventhSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/SeventhSection/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/SixthSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/SixthSection/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/SixthSection/slider.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-infinite-logo-slider' -------------------------------------------------------------------------------- /app/(landing-page)/ThirdSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/ThirdSection/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/footer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/footer/page.tsx -------------------------------------------------------------------------------- /app/(landing-page)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/(landing-page)/page.tsx -------------------------------------------------------------------------------- /app/api/contact/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/api/contact/route.ts -------------------------------------------------------------------------------- /app/contact/FirstSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/contact/FirstSection/page.tsx -------------------------------------------------------------------------------- /app/contact/Navbar/_components/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/contact/Navbar/_components/buttons.tsx -------------------------------------------------------------------------------- /app/contact/Navbar/_components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/contact/Navbar/_components/logo.tsx -------------------------------------------------------------------------------- /app/contact/Navbar/_components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/contact/Navbar/_components/menu.tsx -------------------------------------------------------------------------------- /app/contact/Navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/contact/Navbar/navbar.tsx -------------------------------------------------------------------------------- /app/contact/footer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/contact/footer/page.tsx -------------------------------------------------------------------------------- /app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/contact/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/pricing/FirstSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/pricing/FirstSection/page.tsx -------------------------------------------------------------------------------- /app/pricing/Navbar/_components/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/pricing/Navbar/_components/buttons.tsx -------------------------------------------------------------------------------- /app/pricing/Navbar/_components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/pricing/Navbar/_components/logo.tsx -------------------------------------------------------------------------------- /app/pricing/Navbar/_components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/pricing/Navbar/_components/menu.tsx -------------------------------------------------------------------------------- /app/pricing/Navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/pricing/Navbar/navbar.tsx -------------------------------------------------------------------------------- /app/pricing/SecondSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/pricing/SecondSection/page.tsx -------------------------------------------------------------------------------- /app/pricing/footer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/pricing/footer/page.tsx -------------------------------------------------------------------------------- /app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/pricing/page.tsx -------------------------------------------------------------------------------- /app/product/EighthSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/EighthSection/page.tsx -------------------------------------------------------------------------------- /app/product/FifthSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/FifthSection/page.tsx -------------------------------------------------------------------------------- /app/product/FirstSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/FirstSection/page.tsx -------------------------------------------------------------------------------- /app/product/FourthSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/FourthSection/page.tsx -------------------------------------------------------------------------------- /app/product/Navbar/_components/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/Navbar/_components/buttons.tsx -------------------------------------------------------------------------------- /app/product/Navbar/_components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/Navbar/_components/logo.tsx -------------------------------------------------------------------------------- /app/product/Navbar/_components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/Navbar/_components/menu.tsx -------------------------------------------------------------------------------- /app/product/Navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/Navbar/navbar.tsx -------------------------------------------------------------------------------- /app/product/SecondSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/SecondSection/page.tsx -------------------------------------------------------------------------------- /app/product/SeventhSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/SeventhSection/page.tsx -------------------------------------------------------------------------------- /app/product/SixthSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/SixthSection/page.tsx -------------------------------------------------------------------------------- /app/product/ThirdSection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/ThirdSection/page.tsx -------------------------------------------------------------------------------- /app/product/footer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/footer/page.tsx -------------------------------------------------------------------------------- /app/product/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/app/product/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/bird-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/bird-logo.png -------------------------------------------------------------------------------- /public/images/drawing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/drawing.svg -------------------------------------------------------------------------------- /public/images/icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/.DS_Store -------------------------------------------------------------------------------- /public/images/icons/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/checkmark.png -------------------------------------------------------------------------------- /public/images/icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/clock.png -------------------------------------------------------------------------------- /public/images/icons/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/contacts.png -------------------------------------------------------------------------------- /public/images/icons/gears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/gears.png -------------------------------------------------------------------------------- /public/images/icons/icons8-bookmark-94 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-bookmark-94 (1).png -------------------------------------------------------------------------------- /public/images/icons/icons8-bookmark-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-bookmark-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-close-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-close-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-document-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-document-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-edit-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-edit-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-folder-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-folder-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-news-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-news-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-ok-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-ok-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-picture-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-picture-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-plus-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-plus-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-restart-94 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-restart-94 (1).png -------------------------------------------------------------------------------- /public/images/icons/icons8-scroll-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-scroll-94.png -------------------------------------------------------------------------------- /public/images/icons/icons8-synchronize-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/icons8-synchronize-94.png -------------------------------------------------------------------------------- /public/images/icons/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/lightbulb.png -------------------------------------------------------------------------------- /public/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/lock.png -------------------------------------------------------------------------------- /public/images/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/menu.png -------------------------------------------------------------------------------- /public/images/icons/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/puzzle.png -------------------------------------------------------------------------------- /public/images/icons/refresh-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/refresh-2.png -------------------------------------------------------------------------------- /public/images/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/icons/refresh.png -------------------------------------------------------------------------------- /public/images/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/image-1.png -------------------------------------------------------------------------------- /public/images/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/image-2.png -------------------------------------------------------------------------------- /public/images/logo/logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-1.svg -------------------------------------------------------------------------------- /public/images/logo/logo-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-10.svg -------------------------------------------------------------------------------- /public/images/logo/logo-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-11.svg -------------------------------------------------------------------------------- /public/images/logo/logo-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-12.svg -------------------------------------------------------------------------------- /public/images/logo/logo-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-13.svg -------------------------------------------------------------------------------- /public/images/logo/logo-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-14.svg -------------------------------------------------------------------------------- /public/images/logo/logo-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-15.svg -------------------------------------------------------------------------------- /public/images/logo/logo-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-16.svg -------------------------------------------------------------------------------- /public/images/logo/logo-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-17.svg -------------------------------------------------------------------------------- /public/images/logo/logo-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-18.svg -------------------------------------------------------------------------------- /public/images/logo/logo-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-19.svg -------------------------------------------------------------------------------- /public/images/logo/logo-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-2.svg -------------------------------------------------------------------------------- /public/images/logo/logo-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-3.svg -------------------------------------------------------------------------------- /public/images/logo/logo-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-4.svg -------------------------------------------------------------------------------- /public/images/logo/logo-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-5.svg -------------------------------------------------------------------------------- /public/images/logo/logo-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-6.svg -------------------------------------------------------------------------------- /public/images/logo/logo-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-7.svg -------------------------------------------------------------------------------- /public/images/logo/logo-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-8.svg -------------------------------------------------------------------------------- /public/images/logo/logo-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo-9.svg -------------------------------------------------------------------------------- /public/images/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/logo/logo.svg -------------------------------------------------------------------------------- /public/images/tab-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/tab-1.webp -------------------------------------------------------------------------------- /public/images/tab-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/tab-2.webp -------------------------------------------------------------------------------- /public/images/tab-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/tab-3.webp -------------------------------------------------------------------------------- /public/images/tab-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/tab-4.webp -------------------------------------------------------------------------------- /public/images/tab-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/tab-5.webp -------------------------------------------------------------------------------- /public/images/tab-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/images/tab-6.webp -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/videos/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/videos/check.gif -------------------------------------------------------------------------------- /public/videos/hero-1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/videos/hero-1.mp4 -------------------------------------------------------------------------------- /public/videos/hero.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/videos/hero.mp4 -------------------------------------------------------------------------------- /public/videos/video-2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/videos/video-2.mp4 -------------------------------------------------------------------------------- /public/videos/video-3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/videos/video-3.mp4 -------------------------------------------------------------------------------- /public/videos/video-4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/public/videos/video-4.mp4 -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iggy-tech/asana-clone/HEAD/tsconfig.json --------------------------------------------------------------------------------