├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── SETUP-GUIDE.md ├── bun.lockb ├── components.json ├── next.config.js ├── package.json ├── postcss.config.cjs ├── prettier.config.js ├── prisma └── schema.prisma ├── public ├── TymelyManage.jpeg ├── TymelyManageLight.jpeg ├── TymelyPreview.jpeg ├── TymelyPreviewLight.jpeg ├── TymelyTimeBlocker.png ├── TymelyTimeBlockerLight.png ├── TymelyWorkflow.jpeg ├── TymelyWorkflowLight.jpeg ├── favicon.ico └── tymely-logo.png ├── src ├── Provider │ ├── modal-provider.tsx │ ├── theme-provider.tsx │ └── toast-provider.tsx ├── app │ ├── (pages) │ │ └── workflows │ │ │ ├── [id] │ │ │ ├── board │ │ │ │ └── page.tsx │ │ │ ├── calendar │ │ │ │ └── page.tsx │ │ │ ├── flow │ │ │ │ └── page.tsx │ │ │ └── layout.tsx │ │ │ └── page.tsx │ ├── api │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── layout.tsx │ └── page.tsx ├── components │ ├── Bento.tsx │ ├── forms │ │ ├── flow-form.tsx │ │ └── workflow-form.tsx │ ├── global │ │ ├── LoginButton.tsx │ │ ├── ModeToggle.tsx │ │ ├── Navbar.tsx │ │ ├── custom-modal.tsx │ │ ├── floating-nav.tsx │ │ ├── lampComponent.tsx │ │ ├── radical-gradient.tsx │ │ ├── sparkles.tsx │ │ ├── theme-image-changer.tsx │ │ └── useravatar.tsx │ ├── magic-card.tsx │ ├── ui │ │ ├── animated-bean.tsx │ │ ├── animated-gradient-text.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── bento-grid.tsx │ │ ├── box-reveal.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── number-ticker.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── sheet.tsx │ │ ├── shimmer-border-beam.tsx │ │ ├── shimmer-button.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── tooltip.tsx │ │ └── words-pullup.tsx │ ├── workflow │ │ ├── Calendar.tsx │ │ ├── WorkflowNavbar.tsx │ │ └── milestoneEdit.tsx │ ├── workflowButton.tsx │ └── workflowCard.tsx ├── env.js ├── hooks │ └── useClientMediaQuery.ts ├── lib │ ├── types.ts │ └── utils.ts ├── server │ ├── actions.ts │ ├── auth.ts │ ├── config.ts │ └── db.ts └── styles │ └── globals.css ├── start-database.sh ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/README.md -------------------------------------------------------------------------------- /SETUP-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/SETUP-GUIDE.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/TymelyManage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/TymelyManage.jpeg -------------------------------------------------------------------------------- /public/TymelyManageLight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/TymelyManageLight.jpeg -------------------------------------------------------------------------------- /public/TymelyPreview.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/TymelyPreview.jpeg -------------------------------------------------------------------------------- /public/TymelyPreviewLight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/TymelyPreviewLight.jpeg -------------------------------------------------------------------------------- /public/TymelyTimeBlocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/TymelyTimeBlocker.png -------------------------------------------------------------------------------- /public/TymelyTimeBlockerLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/TymelyTimeBlockerLight.png -------------------------------------------------------------------------------- /public/TymelyWorkflow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/TymelyWorkflow.jpeg -------------------------------------------------------------------------------- /public/TymelyWorkflowLight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/TymelyWorkflowLight.jpeg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/tymely-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/public/tymely-logo.png -------------------------------------------------------------------------------- /src/Provider/modal-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/Provider/modal-provider.tsx -------------------------------------------------------------------------------- /src/Provider/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/Provider/theme-provider.tsx -------------------------------------------------------------------------------- /src/Provider/toast-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/Provider/toast-provider.tsx -------------------------------------------------------------------------------- /src/app/(pages)/workflows/[id]/board/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/app/(pages)/workflows/[id]/board/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/workflows/[id]/calendar/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/app/(pages)/workflows/[id]/calendar/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/workflows/[id]/flow/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/app/(pages)/workflows/[id]/flow/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/workflows/[id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/app/(pages)/workflows/[id]/layout.tsx -------------------------------------------------------------------------------- /src/app/(pages)/workflows/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/app/(pages)/workflows/page.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/Bento.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/Bento.tsx -------------------------------------------------------------------------------- /src/components/forms/flow-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/forms/flow-form.tsx -------------------------------------------------------------------------------- /src/components/forms/workflow-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/forms/workflow-form.tsx -------------------------------------------------------------------------------- /src/components/global/LoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/LoginButton.tsx -------------------------------------------------------------------------------- /src/components/global/ModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/ModeToggle.tsx -------------------------------------------------------------------------------- /src/components/global/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/Navbar.tsx -------------------------------------------------------------------------------- /src/components/global/custom-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/custom-modal.tsx -------------------------------------------------------------------------------- /src/components/global/floating-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/floating-nav.tsx -------------------------------------------------------------------------------- /src/components/global/lampComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/lampComponent.tsx -------------------------------------------------------------------------------- /src/components/global/radical-gradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/radical-gradient.tsx -------------------------------------------------------------------------------- /src/components/global/sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/sparkles.tsx -------------------------------------------------------------------------------- /src/components/global/theme-image-changer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/theme-image-changer.tsx -------------------------------------------------------------------------------- /src/components/global/useravatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/global/useravatar.tsx -------------------------------------------------------------------------------- /src/components/magic-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/magic-card.tsx -------------------------------------------------------------------------------- /src/components/ui/animated-bean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/animated-bean.tsx -------------------------------------------------------------------------------- /src/components/ui/animated-gradient-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/animated-gradient-text.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/bento-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/bento-grid.tsx -------------------------------------------------------------------------------- /src/components/ui/box-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/box-reveal.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/number-ticker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/number-ticker.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/shimmer-border-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/shimmer-border-beam.tsx -------------------------------------------------------------------------------- /src/components/ui/shimmer-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/shimmer-button.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/words-pullup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/ui/words-pullup.tsx -------------------------------------------------------------------------------- /src/components/workflow/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/workflow/Calendar.tsx -------------------------------------------------------------------------------- /src/components/workflow/WorkflowNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/workflow/WorkflowNavbar.tsx -------------------------------------------------------------------------------- /src/components/workflow/milestoneEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/workflow/milestoneEdit.tsx -------------------------------------------------------------------------------- /src/components/workflowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/workflowButton.tsx -------------------------------------------------------------------------------- /src/components/workflowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/components/workflowCard.tsx -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/env.js -------------------------------------------------------------------------------- /src/hooks/useClientMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/hooks/useClientMediaQuery.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/server/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/server/actions.ts -------------------------------------------------------------------------------- /src/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/server/auth.ts -------------------------------------------------------------------------------- /src/server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/server/config.ts -------------------------------------------------------------------------------- /src/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/server/db.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /start-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/start-database.sh -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omm2005/Tymely/HEAD/tsconfig.json --------------------------------------------------------------------------------