├── .bolt ├── config.json ├── ignore └── prompt ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── app ├── auth │ ├── layout.tsx │ ├── signin │ │ └── page.tsx │ └── signup │ │ └── page.tsx ├── chat │ ├── consultation │ │ └── page.tsx │ └── page.tsx ├── components │ ├── AchievementModal.tsx │ ├── CounselorCard.tsx │ ├── CounselorDetailsSheet.tsx │ ├── DailyChallenge.tsx │ ├── FilterModal.tsx │ ├── Footer.tsx │ ├── FooterWrapper.tsx │ ├── Header.tsx │ ├── LegalLayout.tsx │ ├── MobileNavigation.tsx │ ├── PaywallModal.tsx │ ├── QuestionCard.tsx │ ├── RelatedQuestions.tsx │ ├── Reply.tsx │ ├── ReplyForm.tsx │ ├── ReviewList.tsx │ ├── StreakBadge.tsx │ ├── TagGroup.tsx │ ├── TopicCard.tsx │ ├── TopicSearch.tsx │ └── UserAvatar.tsx ├── contact │ └── page.tsx ├── globals.css ├── help │ └── page.tsx ├── layout.tsx ├── lib │ ├── nameGenerator.ts │ ├── tagRecommender.ts │ └── tags.ts ├── page.tsx ├── posts │ ├── [id] │ │ ├── QuestionDetail.tsx │ │ ├── generateStaticParams.ts │ │ └── page.tsx │ └── new │ │ └── page.tsx ├── privacy │ └── page.tsx ├── profile │ ├── page.tsx │ └── settings │ │ ├── edit-profile │ │ └── page.tsx │ │ ├── page.tsx │ │ └── password │ │ └── page.tsx ├── tags │ └── page.tsx ├── terms │ └── page.tsx └── types │ ├── counselor.ts │ ├── reply.ts │ ├── review.ts │ └── topic.ts ├── assets └── demo.gif ├── components.json ├── components └── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── breadcrumb.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── pagination.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ └── tooltip.tsx ├── hooks └── use-toast.ts ├── lib └── utils.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── tailwind.config.ts └── tsconfig.json /.bolt/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "nextjs-shadcn" 3 | } 4 | -------------------------------------------------------------------------------- /.bolt/ignore: -------------------------------------------------------------------------------- 1 | components/ui/* 2 | hooks/use-toast.ts 3 | -------------------------------------------------------------------------------- /.bolt/prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/.bolt/prompt -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/README.md -------------------------------------------------------------------------------- /app/auth/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/auth/layout.tsx -------------------------------------------------------------------------------- /app/auth/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/auth/signin/page.tsx -------------------------------------------------------------------------------- /app/auth/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/auth/signup/page.tsx -------------------------------------------------------------------------------- /app/chat/consultation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/chat/consultation/page.tsx -------------------------------------------------------------------------------- /app/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/chat/page.tsx -------------------------------------------------------------------------------- /app/components/AchievementModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/AchievementModal.tsx -------------------------------------------------------------------------------- /app/components/CounselorCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/CounselorCard.tsx -------------------------------------------------------------------------------- /app/components/CounselorDetailsSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/CounselorDetailsSheet.tsx -------------------------------------------------------------------------------- /app/components/DailyChallenge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/DailyChallenge.tsx -------------------------------------------------------------------------------- /app/components/FilterModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/FilterModal.tsx -------------------------------------------------------------------------------- /app/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/Footer.tsx -------------------------------------------------------------------------------- /app/components/FooterWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/FooterWrapper.tsx -------------------------------------------------------------------------------- /app/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/Header.tsx -------------------------------------------------------------------------------- /app/components/LegalLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/LegalLayout.tsx -------------------------------------------------------------------------------- /app/components/MobileNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/MobileNavigation.tsx -------------------------------------------------------------------------------- /app/components/PaywallModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/PaywallModal.tsx -------------------------------------------------------------------------------- /app/components/QuestionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/QuestionCard.tsx -------------------------------------------------------------------------------- /app/components/RelatedQuestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/RelatedQuestions.tsx -------------------------------------------------------------------------------- /app/components/Reply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/Reply.tsx -------------------------------------------------------------------------------- /app/components/ReplyForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/ReplyForm.tsx -------------------------------------------------------------------------------- /app/components/ReviewList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/ReviewList.tsx -------------------------------------------------------------------------------- /app/components/StreakBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/StreakBadge.tsx -------------------------------------------------------------------------------- /app/components/TagGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/TagGroup.tsx -------------------------------------------------------------------------------- /app/components/TopicCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/TopicCard.tsx -------------------------------------------------------------------------------- /app/components/TopicSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/TopicSearch.tsx -------------------------------------------------------------------------------- /app/components/UserAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/components/UserAvatar.tsx -------------------------------------------------------------------------------- /app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/contact/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/help/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/help/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/lib/nameGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/lib/nameGenerator.ts -------------------------------------------------------------------------------- /app/lib/tagRecommender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/lib/tagRecommender.ts -------------------------------------------------------------------------------- /app/lib/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/lib/tags.ts -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/posts/[id]/QuestionDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/posts/[id]/QuestionDetail.tsx -------------------------------------------------------------------------------- /app/posts/[id]/generateStaticParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/posts/[id]/generateStaticParams.ts -------------------------------------------------------------------------------- /app/posts/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/posts/[id]/page.tsx -------------------------------------------------------------------------------- /app/posts/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/posts/new/page.tsx -------------------------------------------------------------------------------- /app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/privacy/page.tsx -------------------------------------------------------------------------------- /app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/profile/page.tsx -------------------------------------------------------------------------------- /app/profile/settings/edit-profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/profile/settings/edit-profile/page.tsx -------------------------------------------------------------------------------- /app/profile/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/profile/settings/page.tsx -------------------------------------------------------------------------------- /app/profile/settings/password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/profile/settings/password/page.tsx -------------------------------------------------------------------------------- /app/tags/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/tags/page.tsx -------------------------------------------------------------------------------- /app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/terms/page.tsx -------------------------------------------------------------------------------- /app/types/counselor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/types/counselor.ts -------------------------------------------------------------------------------- /app/types/reply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/types/reply.ts -------------------------------------------------------------------------------- /app/types/review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/types/review.ts -------------------------------------------------------------------------------- /app/types/topic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/app/types/topic.ts -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/hooks/use-toast.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaByteInc/Kokoro/HEAD/tsconfig.json --------------------------------------------------------------------------------