├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── about │ └── page.tsx ├── actions │ ├── createProject.ts │ ├── deleteFeedback.ts │ └── deleteProject.ts ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ └── feedback │ │ └── route.ts ├── dashboard │ ├── feedbacks │ │ └── [id] │ │ │ └── page.tsx │ ├── layout.tsx │ ├── page.tsx │ ├── pricing │ │ └── page.tsx │ └── steps │ │ └── page.tsx ├── favicon.ico ├── global-error.tsx ├── globals.css ├── layout.tsx ├── not-found.tsx ├── opengraph-image.png ├── page.tsx ├── privacy │ └── page.tsx ├── robots.ts └── sitemap.ts ├── bun.lockb ├── components.json ├── components ├── Accordian.tsx ├── Announcement.tsx ├── AuthButtons.tsx ├── CodeTabs.tsx ├── CopyToClipboard.tsx ├── CreateProject.tsx ├── DashboardCards.tsx ├── FeaturesSection.tsx ├── Footer.tsx ├── GetStartedButton.tsx ├── HomeAvatars.tsx ├── HomeForm.tsx ├── HowToUse.tsx ├── Navbar.tsx ├── Pricing.tsx ├── ProjectDeleteButton.tsx ├── Sidebar.tsx ├── TechStack.tsx ├── feedback-table.tsx ├── feedback-view.tsx ├── magicui │ ├── blur-fade.tsx │ ├── border-beam.tsx │ └── particles.tsx ├── steps-page.tsx ├── theme-provider.tsx └── ui │ ├── accordion.tsx │ ├── avatar.tsx │ ├── button.tsx │ ├── card.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── hero-video-dialog.tsx │ ├── input.tsx │ ├── label.tsx │ ├── progress.tsx │ ├── rainbow-button.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sonner.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ └── tooltip.tsx ├── env.example ├── lib ├── auth.ts ├── db.ts └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma ├── migrations │ ├── 20240806032711_initial_migration_for_authentication │ │ └── migration.sql │ ├── 20240806042013_corrected_auth_table │ │ └── migration.sql │ ├── 20240806174843_added_project_schema │ │ └── migration.sql │ ├── 20240807043409_added_schema_for_the_feedbacks_and_updated_at_constraints │ │ └── migration.sql │ ├── 20240807103708_fixed_the_feedback_schema │ │ └── migration.sql │ ├── 20240807105030_refactored_whole_schema │ │ └── migration.sql │ ├── 20240807180653_added_foreign_key_in_feedback_model │ │ └── migration.sql │ ├── 20240807181025_refatored │ │ └── migration.sql │ ├── 20240807181559_refactored │ │ └── migration.sql │ ├── 20240809085715_adding │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── Logo.png ├── peerlist.png ├── process1.png ├── process2.png └── process3.png ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/README.md -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/actions/createProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/actions/createProject.ts -------------------------------------------------------------------------------- /app/actions/deleteFeedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/actions/deleteFeedback.ts -------------------------------------------------------------------------------- /app/actions/deleteProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/actions/deleteProject.ts -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/feedback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/api/feedback/route.ts -------------------------------------------------------------------------------- /app/dashboard/feedbacks/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/dashboard/feedbacks/[id]/page.tsx -------------------------------------------------------------------------------- /app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/dashboard/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/dashboard/pricing/page.tsx -------------------------------------------------------------------------------- /app/dashboard/steps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/dashboard/steps/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/global-error.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/opengraph-image.png -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/privacy/page.tsx -------------------------------------------------------------------------------- /app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/robots.ts -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components.json -------------------------------------------------------------------------------- /components/Accordian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/Accordian.tsx -------------------------------------------------------------------------------- /components/Announcement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/Announcement.tsx -------------------------------------------------------------------------------- /components/AuthButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/AuthButtons.tsx -------------------------------------------------------------------------------- /components/CodeTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/CodeTabs.tsx -------------------------------------------------------------------------------- /components/CopyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/CopyToClipboard.tsx -------------------------------------------------------------------------------- /components/CreateProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/CreateProject.tsx -------------------------------------------------------------------------------- /components/DashboardCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/DashboardCards.tsx -------------------------------------------------------------------------------- /components/FeaturesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/FeaturesSection.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/GetStartedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/GetStartedButton.tsx -------------------------------------------------------------------------------- /components/HomeAvatars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/HomeAvatars.tsx -------------------------------------------------------------------------------- /components/HomeForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/HomeForm.tsx -------------------------------------------------------------------------------- /components/HowToUse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/HowToUse.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/Pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/Pricing.tsx -------------------------------------------------------------------------------- /components/ProjectDeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ProjectDeleteButton.tsx -------------------------------------------------------------------------------- /components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/Sidebar.tsx -------------------------------------------------------------------------------- /components/TechStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/TechStack.tsx -------------------------------------------------------------------------------- /components/feedback-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/feedback-table.tsx -------------------------------------------------------------------------------- /components/feedback-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/feedback-view.tsx -------------------------------------------------------------------------------- /components/magicui/blur-fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/magicui/blur-fade.tsx -------------------------------------------------------------------------------- /components/magicui/border-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/magicui/border-beam.tsx -------------------------------------------------------------------------------- /components/magicui/particles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/magicui/particles.tsx -------------------------------------------------------------------------------- /components/steps-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/steps-page.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/hero-video-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/hero-video-dialog.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/rainbow-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/rainbow-button.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/env.example -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/lib/db.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20240806032711_initial_migration_for_authentication/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240806032711_initial_migration_for_authentication/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240806042013_corrected_auth_table/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240806042013_corrected_auth_table/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240806174843_added_project_schema/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240806174843_added_project_schema/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240807043409_added_schema_for_the_feedbacks_and_updated_at_constraints/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240807043409_added_schema_for_the_feedbacks_and_updated_at_constraints/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240807103708_fixed_the_feedback_schema/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240807103708_fixed_the_feedback_schema/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240807105030_refactored_whole_schema/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240807105030_refactored_whole_schema/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240807180653_added_foreign_key_in_feedback_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240807180653_added_foreign_key_in_feedback_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240807181025_refatored/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240807181025_refatored/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240807181559_refactored/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240807181559_refactored/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240809085715_adding/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/20240809085715_adding/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/public/Logo.png -------------------------------------------------------------------------------- /public/peerlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/public/peerlist.png -------------------------------------------------------------------------------- /public/process1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/public/process1.png -------------------------------------------------------------------------------- /public/process2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/public/process2.png -------------------------------------------------------------------------------- /public/process3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/public/process3.png -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avayyyyyyy/Opinify/HEAD/tsconfig.json --------------------------------------------------------------------------------