├── .env.example ├── .eslintrc.json ├── .github └── workflows │ └── greetings.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LEARN.md ├── LICENSE ├── README.md ├── components.json ├── eslint.config.mjs ├── next-sitemap.config.js ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── image setup.PNG ├── logo.png ├── nexmeet.png ├── offline.html ├── poilicy storage.PNG ├── policy setup.PNG ├── profile.jpg ├── robots.txt ├── service-worker.js ├── sitemap-0.xml ├── sitemap.xml ├── sql editor.PNG └── storage.PNG ├── src ├── action │ ├── auth.ts │ ├── convertBlobUrlToFile.ts │ ├── uploadSupabase.ts │ └── userDetails.ts ├── app │ ├── (community) │ │ ├── add-community │ │ │ └── page.tsx │ │ ├── community-patnership │ │ │ └── page.tsx │ │ └── explore-community │ │ │ ├── [id] │ │ │ └── page.tsx │ │ │ └── page.tsx │ ├── (event) │ │ ├── add-event │ │ │ └── page.tsx │ │ ├── event-feedback │ │ │ └── [eventId] │ │ │ │ └── page.tsx │ │ ├── explore-events │ │ │ ├── [eventsId] │ │ │ │ └── page.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── manage-event │ │ │ └── page.tsx │ │ ├── manage-feedback │ │ │ └── [eventId] │ │ │ │ └── page.tsx │ │ ├── register-event │ │ │ └── [registerId] │ │ │ │ └── page.tsx │ │ └── update-event │ │ │ └── page.tsx │ ├── (event-space) │ │ ├── add-event-space │ │ │ └── page.tsx │ │ └── explore-event-space │ │ │ ├── [spaceId] │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── request-booking │ │ │ └── page.tsx │ ├── (participants) │ │ └── participants-details │ │ │ └── [id] │ │ │ └── page.tsx │ ├── ClientServiceWorker.tsx │ ├── about │ │ └── page.tsx │ ├── admin │ │ └── page.tsx │ ├── api │ │ ├── auth │ │ │ └── [kindeAuth] │ │ │ │ └── route.js │ │ └── email │ │ │ └── route.ts │ ├── contact │ │ └── page.tsx │ ├── contributors │ │ └── page.tsx │ ├── dashboard │ │ └── page.tsx │ ├── event-calendar │ │ └── page.tsx │ ├── globals.css │ ├── layout.tsx │ ├── loading.tsx │ ├── not-found.tsx │ ├── page.tsx │ └── unauthorized │ │ └── page.tsx ├── components │ ├── ConfirmationDialog.tsx │ ├── EventPageClient.tsx │ ├── FeatureCards.tsx │ ├── Footer.tsx │ ├── GrindMotion.tsx │ ├── Header.tsx │ ├── Hero.tsx │ ├── Organisedevent.tsx │ ├── Pagination.tsx │ ├── Participatedevent.tsx │ ├── Scroll-to-top.jsx │ ├── email-templates │ │ ├── ApprovalEmail.tsx │ │ ├── CommunityAddedEmail.tsx │ │ ├── CommunityApprovalEmail.tsx │ │ ├── EventApprovalEmail.tsx │ │ ├── EventSubmissionEmail.tsx │ │ ├── FormSubmissionEmail.tsx │ │ └── RegistrationEmail.tsx │ ├── faq.tsx │ ├── form-fields │ │ ├── LocationAutocomplete.tsx │ │ └── form-fields.tsx │ ├── loading.tsx │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── background-beams-with-collision.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── chart.tsx │ │ ├── comment.tsx │ │ ├── cover.tsx │ │ ├── form.tsx │ │ ├── gradienttext.tsx │ │ ├── gridmotion.tsx │ │ ├── hero-highlight.tsx │ │ ├── infinite-moving-cards.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sonner.tsx │ │ ├── sparkles.tsx │ │ ├── table.tsx │ │ └── textarea.tsx ├── data │ ├── community.json │ ├── event.json │ └── reviews.json ├── hooks │ ├── use-outside-click.ts │ └── useUserDetails.ts ├── lib │ └── utils.ts ├── store │ └── user.ts └── utils │ ├── colorUtils.ts │ ├── supabase.ts │ └── supabase │ └── client.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | build 3 | coverage -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/LEARN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/image setup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/image setup.PNG -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/nexmeet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/nexmeet.png -------------------------------------------------------------------------------- /public/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/offline.html -------------------------------------------------------------------------------- /public/poilicy storage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/poilicy storage.PNG -------------------------------------------------------------------------------- /public/policy setup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/policy setup.PNG -------------------------------------------------------------------------------- /public/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/profile.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/service-worker.js -------------------------------------------------------------------------------- /public/sitemap-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/sitemap-0.xml -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/sql editor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/sql editor.PNG -------------------------------------------------------------------------------- /public/storage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/public/storage.PNG -------------------------------------------------------------------------------- /src/action/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/action/auth.ts -------------------------------------------------------------------------------- /src/action/convertBlobUrlToFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/action/convertBlobUrlToFile.ts -------------------------------------------------------------------------------- /src/action/uploadSupabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/action/uploadSupabase.ts -------------------------------------------------------------------------------- /src/action/userDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/action/userDetails.ts -------------------------------------------------------------------------------- /src/app/(community)/add-community/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(community)/add-community/page.tsx -------------------------------------------------------------------------------- /src/app/(community)/community-patnership/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(community)/community-patnership/page.tsx -------------------------------------------------------------------------------- /src/app/(community)/explore-community/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(community)/explore-community/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/(community)/explore-community/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(community)/explore-community/page.tsx -------------------------------------------------------------------------------- /src/app/(event)/add-event/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/add-event/page.tsx -------------------------------------------------------------------------------- /src/app/(event)/event-feedback/[eventId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/event-feedback/[eventId]/page.tsx -------------------------------------------------------------------------------- /src/app/(event)/explore-events/[eventsId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/explore-events/[eventsId]/page.tsx -------------------------------------------------------------------------------- /src/app/(event)/explore-events/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/explore-events/loading.tsx -------------------------------------------------------------------------------- /src/app/(event)/explore-events/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/explore-events/page.tsx -------------------------------------------------------------------------------- /src/app/(event)/manage-event/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/manage-event/page.tsx -------------------------------------------------------------------------------- /src/app/(event)/manage-feedback/[eventId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/manage-feedback/[eventId]/page.tsx -------------------------------------------------------------------------------- /src/app/(event)/register-event/[registerId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/register-event/[registerId]/page.tsx -------------------------------------------------------------------------------- /src/app/(event)/update-event/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event)/update-event/page.tsx -------------------------------------------------------------------------------- /src/app/(event-space)/add-event-space/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event-space)/add-event-space/page.tsx -------------------------------------------------------------------------------- /src/app/(event-space)/explore-event-space/[spaceId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event-space)/explore-event-space/[spaceId]/page.tsx -------------------------------------------------------------------------------- /src/app/(event-space)/explore-event-space/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event-space)/explore-event-space/page.tsx -------------------------------------------------------------------------------- /src/app/(event-space)/explore-event-space/request-booking/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(event-space)/explore-event-space/request-booking/page.tsx -------------------------------------------------------------------------------- /src/app/(participants)/participants-details/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/(participants)/participants-details/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/ClientServiceWorker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/ClientServiceWorker.tsx -------------------------------------------------------------------------------- /src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/about/page.tsx -------------------------------------------------------------------------------- /src/app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/admin/page.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[kindeAuth]/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/api/auth/[kindeAuth]/route.js -------------------------------------------------------------------------------- /src/app/api/email/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/api/email/route.ts -------------------------------------------------------------------------------- /src/app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/contact/page.tsx -------------------------------------------------------------------------------- /src/app/contributors/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/contributors/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/event-calendar/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/event-calendar/page.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/unauthorized/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/app/unauthorized/page.tsx -------------------------------------------------------------------------------- /src/components/ConfirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ConfirmationDialog.tsx -------------------------------------------------------------------------------- /src/components/EventPageClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/EventPageClient.tsx -------------------------------------------------------------------------------- /src/components/FeatureCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/FeatureCards.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/GrindMotion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/GrindMotion.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/Hero.tsx -------------------------------------------------------------------------------- /src/components/Organisedevent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/Organisedevent.tsx -------------------------------------------------------------------------------- /src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/Pagination.tsx -------------------------------------------------------------------------------- /src/components/Participatedevent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/Participatedevent.tsx -------------------------------------------------------------------------------- /src/components/Scroll-to-top.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/Scroll-to-top.jsx -------------------------------------------------------------------------------- /src/components/email-templates/ApprovalEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/email-templates/ApprovalEmail.tsx -------------------------------------------------------------------------------- /src/components/email-templates/CommunityAddedEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/email-templates/CommunityAddedEmail.tsx -------------------------------------------------------------------------------- /src/components/email-templates/CommunityApprovalEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/email-templates/CommunityApprovalEmail.tsx -------------------------------------------------------------------------------- /src/components/email-templates/EventApprovalEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/email-templates/EventApprovalEmail.tsx -------------------------------------------------------------------------------- /src/components/email-templates/EventSubmissionEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/email-templates/EventSubmissionEmail.tsx -------------------------------------------------------------------------------- /src/components/email-templates/FormSubmissionEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/email-templates/FormSubmissionEmail.tsx -------------------------------------------------------------------------------- /src/components/email-templates/RegistrationEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/email-templates/RegistrationEmail.tsx -------------------------------------------------------------------------------- /src/components/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/faq.tsx -------------------------------------------------------------------------------- /src/components/form-fields/LocationAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/form-fields/LocationAutocomplete.tsx -------------------------------------------------------------------------------- /src/components/form-fields/form-fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/form-fields/form-fields.tsx -------------------------------------------------------------------------------- /src/components/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/loading.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/background-beams-with-collision.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/background-beams-with-collision.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/comment.tsx -------------------------------------------------------------------------------- /src/components/ui/cover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/cover.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/gradienttext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/gradienttext.tsx -------------------------------------------------------------------------------- /src/components/ui/gridmotion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/gridmotion.tsx -------------------------------------------------------------------------------- /src/components/ui/hero-highlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/hero-highlight.tsx -------------------------------------------------------------------------------- /src/components/ui/infinite-moving-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/infinite-moving-cards.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/sparkles.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/data/community.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/data/community.json -------------------------------------------------------------------------------- /src/data/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/data/event.json -------------------------------------------------------------------------------- /src/data/reviews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/data/reviews.json -------------------------------------------------------------------------------- /src/hooks/use-outside-click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/hooks/use-outside-click.ts -------------------------------------------------------------------------------- /src/hooks/useUserDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/hooks/useUserDetails.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/store/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/store/user.ts -------------------------------------------------------------------------------- /src/utils/colorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/utils/colorUtils.ts -------------------------------------------------------------------------------- /src/utils/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/utils/supabase.ts -------------------------------------------------------------------------------- /src/utils/supabase/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/src/utils/supabase/client.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasnasre/nexmeet/HEAD/tsconfig.json --------------------------------------------------------------------------------