├── .bolt ├── config.json └── prompt ├── .env.edge ├── .env.local.example ├── .env.production ├── .eslintrc.json ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── issue-labeler.yml ├── labeler.yml └── workflows │ ├── greetings.yml │ ├── label.yml │ ├── stale.yml │ └── summary.yml ├── .gitignore ├── .local-storage └── uploads │ └── test-uploads │ └── test-file-local-1749108146711.txt ├── .vercelignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Content_policy.md ├── DOCUMENTATION.md ├── LICENSE ├── Model_policies.md ├── PROFILE-SUMMARY.md ├── Privacy Policy.md ├── README-PROFILE.md ├── README.md ├── SECURITY.md ├── Terms and Policies.md ├── app ├── ClientLayout.tsx ├── about │ └── page.tsx ├── account │ └── confirm-deletion │ │ └── page.tsx ├── admin │ ├── dashboard │ │ ├── layout.tsx │ │ └── page.tsx │ ├── login │ │ └── page.tsx │ ├── page.tsx │ └── users │ │ └── page.tsx ├── api-docs │ └── page.tsx ├── api-reference │ └── page.tsx ├── api │ ├── agent │ │ └── route.ts │ ├── ai-agent │ │ └── route.ts │ ├── ai-models │ │ └── route.ts │ ├── auth │ │ ├── [...nextauth] │ │ │ └── route.ts │ │ ├── anonymous-signin │ │ │ └── route.ts │ │ ├── callback-handler │ │ │ └── route.ts │ │ ├── reset-password │ │ │ └── route.ts │ │ ├── signin │ │ │ └── route.ts │ │ ├── signup │ │ │ └── route.ts │ │ ├── supabase-signin │ │ │ └── route.ts │ │ ├── supabase-signup │ │ │ └── route.ts │ │ └── verify-api-key │ │ │ └── route.ts │ ├── blog │ │ └── route.ts │ ├── checkout-details │ │ └── route.ts │ ├── coinbase │ │ ├── check-status │ │ │ └── route.ts │ │ ├── create-checkout │ │ │ └── route.ts │ │ └── route.ts │ ├── community │ │ ├── discussions │ │ │ └── route.ts │ │ ├── featured-creators │ │ │ └── route.ts │ │ ├── stats │ │ │ └── route.ts │ │ ├── trending-models │ │ │ └── route.ts │ │ └── upcoming-events │ │ │ └── route.ts │ ├── config.ts │ ├── create-checkout-session │ │ └── route.ts │ ├── create-subscription │ │ └── route.ts │ ├── creators │ │ ├── [username] │ │ │ ├── models │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ └── route.ts │ ├── crypto │ │ └── transaction │ │ │ └── route.ts │ ├── datasets │ │ └── route.ts │ ├── email │ │ ├── status │ │ │ └── route.ts │ │ ├── template-test │ │ │ └── route.ts │ │ ├── test │ │ │ └── route.ts │ │ └── verify-smtp │ │ │ └── route.ts │ ├── events │ │ ├── [id] │ │ │ └── route.ts │ │ ├── create │ │ │ └── route.ts │ │ ├── register │ │ │ └── route.ts │ │ └── route.ts │ ├── github-repos │ │ └── route.ts │ ├── kaggle-datasets │ │ └── route.ts │ ├── local-storage │ │ └── [...path] │ │ │ └── route.ts │ ├── models │ │ ├── [id] │ │ │ ├── ratings │ │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ └── versions │ │ │ │ ├── [versionId] │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ ├── current-version │ │ │ └── route.ts │ │ ├── route.ts │ │ ├── upload │ │ │ ├── route.ts │ │ │ └── thumbnail │ │ │ │ └── route.ts │ │ └── version │ │ │ └── route.ts │ ├── newsletter │ │ └── subscribe │ │ │ └── route.ts │ ├── page.tsx │ ├── platform-stats │ │ └── route.ts │ ├── posts │ │ ├── comment │ │ │ ├── like │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── like │ │ │ └── route.ts │ │ ├── repost │ │ │ └── route.ts │ │ └── route.ts │ ├── supabase-setup │ │ └── route.ts │ ├── upi-payment │ │ └── route.ts │ ├── upload │ │ ├── chunk │ │ │ └── route.ts │ │ ├── complete │ │ │ └── route.ts │ │ └── init │ │ │ └── route.ts │ ├── user │ │ ├── [userId] │ │ │ └── route.ts │ │ ├── activity │ │ │ └── route.ts │ │ ├── api-keys │ │ │ └── route.ts │ │ ├── avatar │ │ │ └── route.ts │ │ ├── customers │ │ │ └── route.ts │ │ ├── delete-account │ │ │ └── route.ts │ │ ├── export-api-keys │ │ │ └── route.ts │ │ ├── export-data │ │ │ └── route.ts │ │ ├── generate-report │ │ │ └── route.ts │ │ ├── models │ │ │ └── route.ts │ │ ├── profile │ │ │ ├── [userId] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── revenue │ │ │ └── route.ts │ │ ├── route.ts │ │ ├── sales │ │ │ └── route.ts │ │ └── usage │ │ │ └── route.ts │ ├── username-check │ │ └── route.ts │ ├── verify-payment │ │ └── route.ts │ └── webhooks │ │ └── stripe │ │ └── route.ts ├── app.tsx ├── auth-error │ └── page.tsx ├── auth │ ├── callback-success │ │ └── page.tsx │ ├── callback │ │ └── route.ts │ └── exchange │ │ └── page.tsx ├── blog │ ├── category │ │ └── open-source │ │ │ └── page.tsx │ └── page.tsx ├── careers │ ├── [id] │ │ └── page.tsx │ ├── page.tsx │ └── page.tsx.bak ├── checkout │ ├── cancel │ │ └── page.tsx │ └── success │ │ └── page.tsx ├── community │ └── page.tsx ├── company │ └── page.tsx ├── components │ ├── AIAgent │ │ ├── AIAgent.tsx │ │ ├── faq-data.ts │ │ └── index.ts │ └── ui │ │ └── animated-button.tsx ├── contact │ └── page.tsx ├── cookies │ └── page.tsx ├── creators │ ├── [username] │ │ └── page.tsx │ └── page.tsx ├── dashboard │ ├── models │ │ └── create │ │ │ └── page.tsx │ └── page.tsx ├── discord │ └── page.tsx ├── docs │ ├── hosting │ │ └── page.tsx │ └── page.tsx ├── events │ ├── [id] │ │ └── page.tsx │ ├── create │ │ └── page.tsx │ ├── guidelines │ │ └── page.tsx │ └── page.tsx ├── features │ └── page.tsx ├── github │ └── page.tsx ├── globals.css ├── guidelines │ └── page.tsx ├── hooks │ └── useAIAgent.ts ├── hosting │ └── page.tsx ├── inference │ └── page.tsx ├── layout.tsx ├── leaderboard │ └── page.tsx ├── lib │ └── websiteDataService.ts ├── loading-showcase │ └── page.tsx ├── marketplace │ └── page.tsx ├── open-source-models │ └── page.tsx ├── open-source │ └── page.tsx ├── page.tsx ├── partners │ ├── page.tsx │ └── success-stories │ │ └── page.tsx ├── playground │ ├── AIAssistantPanel.tsx │ ├── CloudShell.tsx │ ├── CodeEditor.tsx │ ├── CodeSamplesPanel.tsx │ ├── ExtensionMarketplace.tsx │ ├── FileExplorer.tsx │ ├── GitHubIntegration.tsx │ ├── ModelExplorer.tsx │ ├── PreviewWindow.tsx │ ├── README.md │ ├── SettingsModal.tsx │ ├── SettingsPanel.tsx │ ├── Terminal.tsx │ ├── demo │ │ ├── AIComponent.jsx │ │ ├── README-resume.md │ │ ├── ResumeGenerator.jsx │ │ ├── config.json │ │ ├── global.css │ │ ├── main.js │ │ ├── resume-styles.css │ │ ├── resume-template.html │ │ ├── styles.css │ │ └── utils.js │ ├── index.ts │ └── page.tsx ├── pricing │ └── page.tsx ├── privacy │ └── page.tsx ├── profile │ ├── [userId] │ │ └── page.tsx │ ├── edit │ │ └── page.tsx │ └── page.tsx ├── providers │ └── AppProvider.tsx ├── research │ └── page.tsx ├── roadmap │ └── page.tsx ├── sell-your-model │ └── page.tsx ├── settings │ └── api-keys │ │ └── page.tsx ├── showcase │ └── page.tsx ├── signin │ └── page.tsx ├── signup │ └── page.tsx ├── terms │ └── page.tsx ├── testurl │ └── page.tsx ├── tutorials │ └── page.tsx ├── upload │ └── page.tsx └── your-models │ └── page.tsx ├── components ├── AIAgent.tsx ├── AIModelExplorer.tsx ├── AccountDeletionModal.tsx ├── AgentKitUI.tsx ├── AnimatedLogo.tsx ├── Animated_Logo.jsx ├── ApiKeyManager.tsx ├── ApplicationModal.tsx ├── BackgroundParticles.jsx ├── BackgroundParticles.tsx ├── Brand.tsx ├── BuyModelButton.tsx ├── CoinbaseWallet.tsx ├── DatasetExplorer.tsx ├── EventFormModal.tsx ├── FeaturedModels.tsx ├── Footer.tsx ├── GitHubRepoExplorer.tsx ├── ImageGenerator.tsx ├── JobListingsModal.tsx ├── KaggleDatasetExplorer.tsx ├── LeaderboardSection.tsx ├── LoadingScreen.tsx ├── LoadingShowcase.tsx ├── ModelAnalytics.tsx ├── ModelCard.tsx ├── ModelComparison.tsx ├── ModelPreview.tsx ├── Navbar.tsx ├── NewsletterDialog.tsx ├── OptimizedImage.tsx ├── PaymentOptions.tsx ├── ProfileAvatarUpload.tsx ├── ProfileCompleteModal.tsx ├── ProfilePage.tsx ├── QuoteDisplay.tsx ├── ReviewSystem.tsx ├── SearchAndFilter.tsx ├── SellerCTA.tsx ├── SimpleCryptoButton.tsx ├── SpaceBackground.tsx ├── SplashScreen.tsx ├── SubscriptionButton.tsx ├── TourGuide.tsx ├── UploadForm.jsx ├── UploadForm.tsx ├── UploadModal.tsx ├── UserProfile.jsx ├── UserProfile.tsx ├── WalletConnect.tsx ├── dashboard │ ├── CustomerManagement.tsx │ ├── ModelAnalytics.tsx │ └── SalesAnalytics.tsx ├── layouts │ └── AdminLayout.tsx ├── modals │ └── EventFormModal.tsx └── ui │ ├── AIAssistantButton.tsx │ ├── ThemeSwitch.tsx │ ├── animated-button.tsx │ ├── animated-card.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── label.tsx │ ├── loading-animation.tsx │ ├── loading-overlay.tsx │ ├── select.tsx │ ├── switch.tsx │ └── use-toast.ts ├── cookie_polocy.md ├── dev-server.js ├── development_challenges.md ├── docs ├── email-service.md ├── storage-service.md ├── technical-specification.md └── user-profiles.md ├── eslint.config.js ├── firebase-rules ├── firestore.indexes.json ├── firestore.rules └── storage.rules ├── firebase.json ├── google752f5511934d5388.html ├── index.html ├── issues ├── 01-JWT-API-Key-Generation.md ├── 02-API-Documentation-System.md ├── 03-API-Rate-Limiting.md ├── 04-API-Versioning-Strategy.md ├── 05-API-Error-Handling-Standardization.md ├── 06-API-Caching-Strategy.md ├── 07-API-Client-SDK-Generation.md ├── 08-API-Metrics-and-Monitoring.md ├── 09-API-Key-Management-UI.md ├── 10-API-Webhooks-System.md ├── 11-GraphQL-API-Implementation.md ├── 12-API-Integration-Testing-Framework.md ├── 13-Component-Lazy-Loading-Optimization.md ├── 14-Responsive-Design-Improvements.md ├── 15-Accessibility-Compliance-Overhaul.md ├── 16-Authentication-Flow-Enhancement.md ├── 17-Database-Schema-Optimization.md ├── 18-SEO-and-Metadata-Enhancement.md ├── 19-Error-Handling-and-Resilience.md ├── 20-State-Management-Refactoring.md ├── 21-Build-and-Deployment-Pipeline.md ├── 22-Automated-Testing-Framework.md ├── 23-Test-Driven-Development-Implementation.md ├── 24-Database-Migration-and-Version-Control.md ├── 25-Web3-Integration-Framework.md ├── 26-Backend-Service-Architecture-Refactoring.md ├── 27-Data-Backup-and-Recovery-System.md ├── 28-Backend-Performance-Optimization.md ├── 29-API-Rate-Limiting-and-Throttling.md ├── 30-Continuous-Integration-for-Frontend.md ├── 31-Real-time-Notification-System.md └── README.md ├── jsconfig.json ├── lib ├── AIAgentService.ts ├── DataCrawler.ts ├── GitHubCrawler.ts ├── KaggleCrawler.ts ├── ModelCrawler.ts ├── auth.ts ├── coinbase.ts ├── config.ts ├── firebase.ts ├── fonts.ts ├── gcloud-storage-direct.ts ├── gcloud-storage-fallback.js ├── gcloud-storage.ts ├── models │ ├── blog.ts │ ├── model.ts │ ├── post.ts │ └── user.ts ├── mongodb.ts ├── polyfills │ └── timers-promises.js ├── react-imports.ts ├── runtime.js ├── services │ ├── api-key-service.ts │ ├── email-service.js │ ├── email-service.ts │ ├── model-service.ts │ ├── storage-service.js │ ├── storage-service.ts │ ├── user-profile-service.js │ ├── user-profile-service.ts │ └── user-service.ts ├── store.ts ├── supabase-setup.ts ├── supabase.ts ├── supabase │ └── server.ts ├── test-gcloud-storage.js ├── types │ └── storage.ts ├── utils.ts ├── utils │ └── fileStorage.ts ├── validation.ts └── vercel.ts ├── middleware.js ├── next-env.d.ts ├── next.config.js ├── next.edge.config.js ├── package.json ├── pages └── api │ └── profile │ ├── avatar.ts │ └── index.ts ├── postcss.config.js ├── project_overview.md ├── providers ├── AIAgentProvider.tsx ├── AdminAuthProvider.tsx ├── AppProvider.tsx ├── AuthProvider.tsx ├── CoinbaseAgentProvider.tsx ├── CoinbaseProvider.tsx ├── EthersWrapper.ts ├── ModalProvider.tsx ├── SimpleCryptoProvider.tsx ├── SupabaseProvider.tsx ├── ThemeProvider.tsx ├── Web3Provider.tsx └── index.tsx ├── public ├── animated-logo.gif ├── animated-logo.svg ├── apple-touch-icon-precomposed.png ├── apple-touch-icon-precomposed.svg ├── apple-touch-icon.png ├── apple-touch-icon.svg ├── auth-callback-static.html ├── avatars │ ├── test-user-1749129516396-1749129516406.png │ └── test-user-1749130468167-1749130468174.png ├── fallback-static.html ├── featured-bg.jpg ├── featured-bg.svg ├── google752f5511934d5388.html ├── grid.svg ├── images │ ├── Chandigarh.png │ ├── Logo.png │ ├── discord.png │ └── imagee6.png ├── noise.png ├── partners │ ├── 7123025_logo_google_g_icon.svg │ ├── icons8-chatgpt.svg │ ├── icons8-ibm.svg │ ├── icons8-meta.svg │ └── icons8-nvidia.svg ├── signin-static.html ├── signup-static.html ├── team │ ├── Avya.png │ ├── Fatima.png │ └── Mantej.png ├── test-files │ └── test-file.txt ├── tonconnect-manifest.json └── uploads │ └── files │ └── test-files │ └── test-1749107639365.txt ├── scripts ├── README-platform-stats-fix.md ├── README-platform-stats-production.md ├── clear-cache.js ├── direct-db-update.js ├── edge-config.js ├── fix-middleware.js ├── fix-oauth-instructions.md ├── fix-oauth-via-api.js ├── fix-react-build.js ├── patch-build.js ├── prepare-build.js ├── purge-edge-modules.js ├── setup-gcs-auth.js ├── supabase-create-user-count-function.sql ├── supabase-dashboard-fix.md ├── supabase-oauth-update.js ├── test-avatar.png ├── update-auth-settings.sql ├── update-oauth-display.js ├── update-supabase-config.js ├── vercel-build-hook.js ├── vercel-build.js └── verify-sendgrid-sender.js ├── src ├── App.tsx ├── components │ ├── animations │ │ └── BrainAnimation.tsx │ ├── auth │ │ ├── AuthLayout.tsx │ │ ├── SignInForm.tsx │ │ └── SignInMenu.tsx │ └── ui │ │ ├── Badge.tsx │ │ ├── Button.tsx │ │ ├── Card.tsx │ │ ├── Input.tsx │ │ ├── Modal.tsx │ │ ├── PartnerCard.tsx │ │ ├── PartnerTabs.tsx │ │ ├── PartnershipJourney.tsx │ │ ├── PartnershipTypeCard.tsx │ │ ├── PasswordStrengthMeter.tsx │ │ ├── ProfileSidebar.tsx │ │ ├── ScrollArea.tsx │ │ ├── SecurityModal.tsx │ │ ├── Skeleton.tsx │ │ ├── Table.tsx │ │ ├── ThemeToggle.tsx │ │ └── UsernameSuggestions.tsx ├── hooks │ └── useTheme.ts ├── index.css ├── main.tsx ├── styles │ ├── animations.css │ └── theme.css ├── utils │ └── markdown.ts └── vite-env.d.ts ├── tailwind.config.js ├── templates └── confirm_sign_up.html ├── test-scripts ├── test-direct-gcs.js ├── test-gcloud-storage.js ├── test-gcs-config.js ├── test-gcs-upload.txt ├── test-mongodb.js ├── test-profile-system.js ├── test-sendgrid.js ├── test-smtp.js ├── test-storage-fallback.js ├── test-storage-service.js ├── test-storage.js └── test-user-profile.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.tsbuildinfo ├── types └── community.ts ├── updates.md ├── utils └── supabase.ts ├── vercel.json └── vite.config.ts.backup /.bolt/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "bolt-vite-react-ts" 3 | } 4 | -------------------------------------------------------------------------------- /.bolt/prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.bolt/prompt -------------------------------------------------------------------------------- /.env.edge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.env.edge -------------------------------------------------------------------------------- /.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.env.local.example -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/issue-labeler.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.github/workflows/summary.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.gitignore -------------------------------------------------------------------------------- /.local-storage/uploads/test-uploads/test-file-local-1749108146711.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.local-storage/uploads/test-uploads/test-file-local-1749108146711.txt -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/.vercelignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Content_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/Content_policy.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/LICENSE -------------------------------------------------------------------------------- /Model_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/Model_policies.md -------------------------------------------------------------------------------- /PROFILE-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/PROFILE-SUMMARY.md -------------------------------------------------------------------------------- /Privacy Policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/Privacy Policy.md -------------------------------------------------------------------------------- /README-PROFILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/README-PROFILE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Terms and Policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/Terms and Policies.md -------------------------------------------------------------------------------- /app/ClientLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/ClientLayout.tsx -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/account/confirm-deletion/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/account/confirm-deletion/page.tsx -------------------------------------------------------------------------------- /app/admin/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/admin/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/admin/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/admin/dashboard/page.tsx -------------------------------------------------------------------------------- /app/admin/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/admin/login/page.tsx -------------------------------------------------------------------------------- /app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/admin/page.tsx -------------------------------------------------------------------------------- /app/admin/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/admin/users/page.tsx -------------------------------------------------------------------------------- /app/api-docs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api-docs/page.tsx -------------------------------------------------------------------------------- /app/api-reference/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api-reference/page.tsx -------------------------------------------------------------------------------- /app/api/agent/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/agent/route.ts -------------------------------------------------------------------------------- /app/api/ai-agent/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/ai-agent/route.ts -------------------------------------------------------------------------------- /app/api/ai-models/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/ai-models/route.ts -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/auth/anonymous-signin/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/anonymous-signin/route.ts -------------------------------------------------------------------------------- /app/api/auth/callback-handler/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/callback-handler/route.ts -------------------------------------------------------------------------------- /app/api/auth/reset-password/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/reset-password/route.ts -------------------------------------------------------------------------------- /app/api/auth/signin/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/signin/route.ts -------------------------------------------------------------------------------- /app/api/auth/signup/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/signup/route.ts -------------------------------------------------------------------------------- /app/api/auth/supabase-signin/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/supabase-signin/route.ts -------------------------------------------------------------------------------- /app/api/auth/supabase-signup/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/supabase-signup/route.ts -------------------------------------------------------------------------------- /app/api/auth/verify-api-key/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/auth/verify-api-key/route.ts -------------------------------------------------------------------------------- /app/api/blog/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/blog/route.ts -------------------------------------------------------------------------------- /app/api/checkout-details/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/checkout-details/route.ts -------------------------------------------------------------------------------- /app/api/coinbase/check-status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/coinbase/check-status/route.ts -------------------------------------------------------------------------------- /app/api/coinbase/create-checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/coinbase/create-checkout/route.ts -------------------------------------------------------------------------------- /app/api/coinbase/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/coinbase/route.ts -------------------------------------------------------------------------------- /app/api/community/discussions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/community/discussions/route.ts -------------------------------------------------------------------------------- /app/api/community/featured-creators/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/community/featured-creators/route.ts -------------------------------------------------------------------------------- /app/api/community/stats/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/community/stats/route.ts -------------------------------------------------------------------------------- /app/api/community/trending-models/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/community/trending-models/route.ts -------------------------------------------------------------------------------- /app/api/community/upcoming-events/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/community/upcoming-events/route.ts -------------------------------------------------------------------------------- /app/api/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/config.ts -------------------------------------------------------------------------------- /app/api/create-checkout-session/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/create-checkout-session/route.ts -------------------------------------------------------------------------------- /app/api/create-subscription/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/create-subscription/route.ts -------------------------------------------------------------------------------- /app/api/creators/[username]/models/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/creators/[username]/models/route.ts -------------------------------------------------------------------------------- /app/api/creators/[username]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/creators/[username]/route.ts -------------------------------------------------------------------------------- /app/api/creators/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/creators/route.ts -------------------------------------------------------------------------------- /app/api/crypto/transaction/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/crypto/transaction/route.ts -------------------------------------------------------------------------------- /app/api/datasets/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/datasets/route.ts -------------------------------------------------------------------------------- /app/api/email/status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/email/status/route.ts -------------------------------------------------------------------------------- /app/api/email/template-test/route.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/email/test/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/email/test/route.ts -------------------------------------------------------------------------------- /app/api/email/verify-smtp/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/email/verify-smtp/route.ts -------------------------------------------------------------------------------- /app/api/events/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/events/[id]/route.ts -------------------------------------------------------------------------------- /app/api/events/create/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/events/create/route.ts -------------------------------------------------------------------------------- /app/api/events/register/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/events/register/route.ts -------------------------------------------------------------------------------- /app/api/events/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/events/route.ts -------------------------------------------------------------------------------- /app/api/github-repos/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/github-repos/route.ts -------------------------------------------------------------------------------- /app/api/kaggle-datasets/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/kaggle-datasets/route.ts -------------------------------------------------------------------------------- /app/api/local-storage/[...path]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/local-storage/[...path]/route.ts -------------------------------------------------------------------------------- /app/api/models/[id]/ratings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/[id]/ratings/route.ts -------------------------------------------------------------------------------- /app/api/models/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/[id]/route.ts -------------------------------------------------------------------------------- /app/api/models/[id]/versions/[versionId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/[id]/versions/[versionId]/route.ts -------------------------------------------------------------------------------- /app/api/models/[id]/versions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/[id]/versions/route.ts -------------------------------------------------------------------------------- /app/api/models/current-version/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/current-version/route.ts -------------------------------------------------------------------------------- /app/api/models/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/route.ts -------------------------------------------------------------------------------- /app/api/models/upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/upload/route.ts -------------------------------------------------------------------------------- /app/api/models/upload/thumbnail/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/upload/thumbnail/route.ts -------------------------------------------------------------------------------- /app/api/models/version/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/models/version/route.ts -------------------------------------------------------------------------------- /app/api/newsletter/subscribe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/newsletter/subscribe/route.ts -------------------------------------------------------------------------------- /app/api/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/page.tsx -------------------------------------------------------------------------------- /app/api/platform-stats/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/platform-stats/route.ts -------------------------------------------------------------------------------- /app/api/posts/comment/like/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/posts/comment/like/route.ts -------------------------------------------------------------------------------- /app/api/posts/comment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/posts/comment/route.ts -------------------------------------------------------------------------------- /app/api/posts/like/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/posts/like/route.ts -------------------------------------------------------------------------------- /app/api/posts/repost/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/posts/repost/route.ts -------------------------------------------------------------------------------- /app/api/posts/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/posts/route.ts -------------------------------------------------------------------------------- /app/api/supabase-setup/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/supabase-setup/route.ts -------------------------------------------------------------------------------- /app/api/upi-payment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/upi-payment/route.ts -------------------------------------------------------------------------------- /app/api/upload/chunk/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/upload/chunk/route.ts -------------------------------------------------------------------------------- /app/api/upload/complete/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/upload/complete/route.ts -------------------------------------------------------------------------------- /app/api/upload/init/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/upload/init/route.ts -------------------------------------------------------------------------------- /app/api/user/[userId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/[userId]/route.ts -------------------------------------------------------------------------------- /app/api/user/activity/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/activity/route.ts -------------------------------------------------------------------------------- /app/api/user/api-keys/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/api-keys/route.ts -------------------------------------------------------------------------------- /app/api/user/avatar/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/avatar/route.ts -------------------------------------------------------------------------------- /app/api/user/customers/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/customers/route.ts -------------------------------------------------------------------------------- /app/api/user/delete-account/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/delete-account/route.ts -------------------------------------------------------------------------------- /app/api/user/export-api-keys/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/export-api-keys/route.ts -------------------------------------------------------------------------------- /app/api/user/export-data/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/export-data/route.ts -------------------------------------------------------------------------------- /app/api/user/generate-report/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/generate-report/route.ts -------------------------------------------------------------------------------- /app/api/user/models/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/models/route.ts -------------------------------------------------------------------------------- /app/api/user/profile/[userId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/profile/[userId]/route.ts -------------------------------------------------------------------------------- /app/api/user/profile/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/profile/route.ts -------------------------------------------------------------------------------- /app/api/user/revenue/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/revenue/route.ts -------------------------------------------------------------------------------- /app/api/user/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/route.ts -------------------------------------------------------------------------------- /app/api/user/sales/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/sales/route.ts -------------------------------------------------------------------------------- /app/api/user/usage/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/user/usage/route.ts -------------------------------------------------------------------------------- /app/api/username-check/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/username-check/route.ts -------------------------------------------------------------------------------- /app/api/verify-payment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/verify-payment/route.ts -------------------------------------------------------------------------------- /app/api/webhooks/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/api/webhooks/stripe/route.ts -------------------------------------------------------------------------------- /app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/app.tsx -------------------------------------------------------------------------------- /app/auth-error/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/auth-error/page.tsx -------------------------------------------------------------------------------- /app/auth/callback-success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/auth/callback-success/page.tsx -------------------------------------------------------------------------------- /app/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/auth/callback/route.ts -------------------------------------------------------------------------------- /app/auth/exchange/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/auth/exchange/page.tsx -------------------------------------------------------------------------------- /app/blog/category/open-source/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/blog/category/open-source/page.tsx -------------------------------------------------------------------------------- /app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/blog/page.tsx -------------------------------------------------------------------------------- /app/careers/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/careers/[id]/page.tsx -------------------------------------------------------------------------------- /app/careers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/careers/page.tsx -------------------------------------------------------------------------------- /app/careers/page.tsx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/careers/page.tsx.bak -------------------------------------------------------------------------------- /app/checkout/cancel/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/checkout/cancel/page.tsx -------------------------------------------------------------------------------- /app/checkout/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/checkout/success/page.tsx -------------------------------------------------------------------------------- /app/community/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/community/page.tsx -------------------------------------------------------------------------------- /app/company/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/company/page.tsx -------------------------------------------------------------------------------- /app/components/AIAgent/AIAgent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/components/AIAgent/AIAgent.tsx -------------------------------------------------------------------------------- /app/components/AIAgent/faq-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/components/AIAgent/faq-data.ts -------------------------------------------------------------------------------- /app/components/AIAgent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/components/AIAgent/index.ts -------------------------------------------------------------------------------- /app/components/ui/animated-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/components/ui/animated-button.tsx -------------------------------------------------------------------------------- /app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/contact/page.tsx -------------------------------------------------------------------------------- /app/cookies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/cookies/page.tsx -------------------------------------------------------------------------------- /app/creators/[username]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/creators/[username]/page.tsx -------------------------------------------------------------------------------- /app/creators/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/creators/page.tsx -------------------------------------------------------------------------------- /app/dashboard/models/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/dashboard/models/create/page.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/discord/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/discord/page.tsx -------------------------------------------------------------------------------- /app/docs/hosting/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/docs/hosting/page.tsx -------------------------------------------------------------------------------- /app/docs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/docs/page.tsx -------------------------------------------------------------------------------- /app/events/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/events/[id]/page.tsx -------------------------------------------------------------------------------- /app/events/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/events/create/page.tsx -------------------------------------------------------------------------------- /app/events/guidelines/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/events/guidelines/page.tsx -------------------------------------------------------------------------------- /app/events/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/events/page.tsx -------------------------------------------------------------------------------- /app/features/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/features/page.tsx -------------------------------------------------------------------------------- /app/github/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/github/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/guidelines/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/guidelines/page.tsx -------------------------------------------------------------------------------- /app/hooks/useAIAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/hooks/useAIAgent.ts -------------------------------------------------------------------------------- /app/hosting/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/hosting/page.tsx -------------------------------------------------------------------------------- /app/inference/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/inference/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/leaderboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/leaderboard/page.tsx -------------------------------------------------------------------------------- /app/lib/websiteDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/lib/websiteDataService.ts -------------------------------------------------------------------------------- /app/loading-showcase/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/loading-showcase/page.tsx -------------------------------------------------------------------------------- /app/marketplace/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/marketplace/page.tsx -------------------------------------------------------------------------------- /app/open-source-models/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/open-source-models/page.tsx -------------------------------------------------------------------------------- /app/open-source/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/open-source/page.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/partners/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/partners/page.tsx -------------------------------------------------------------------------------- /app/partners/success-stories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/partners/success-stories/page.tsx -------------------------------------------------------------------------------- /app/playground/AIAssistantPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/AIAssistantPanel.tsx -------------------------------------------------------------------------------- /app/playground/CloudShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/CloudShell.tsx -------------------------------------------------------------------------------- /app/playground/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/CodeEditor.tsx -------------------------------------------------------------------------------- /app/playground/CodeSamplesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/CodeSamplesPanel.tsx -------------------------------------------------------------------------------- /app/playground/ExtensionMarketplace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/ExtensionMarketplace.tsx -------------------------------------------------------------------------------- /app/playground/FileExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/FileExplorer.tsx -------------------------------------------------------------------------------- /app/playground/GitHubIntegration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/GitHubIntegration.tsx -------------------------------------------------------------------------------- /app/playground/ModelExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/ModelExplorer.tsx -------------------------------------------------------------------------------- /app/playground/PreviewWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/PreviewWindow.tsx -------------------------------------------------------------------------------- /app/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/README.md -------------------------------------------------------------------------------- /app/playground/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/SettingsModal.tsx -------------------------------------------------------------------------------- /app/playground/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/SettingsPanel.tsx -------------------------------------------------------------------------------- /app/playground/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/Terminal.tsx -------------------------------------------------------------------------------- /app/playground/demo/AIComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/AIComponent.jsx -------------------------------------------------------------------------------- /app/playground/demo/README-resume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/README-resume.md -------------------------------------------------------------------------------- /app/playground/demo/ResumeGenerator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/ResumeGenerator.jsx -------------------------------------------------------------------------------- /app/playground/demo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/config.json -------------------------------------------------------------------------------- /app/playground/demo/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/global.css -------------------------------------------------------------------------------- /app/playground/demo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/main.js -------------------------------------------------------------------------------- /app/playground/demo/resume-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/resume-styles.css -------------------------------------------------------------------------------- /app/playground/demo/resume-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/resume-template.html -------------------------------------------------------------------------------- /app/playground/demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/styles.css -------------------------------------------------------------------------------- /app/playground/demo/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/demo/utils.js -------------------------------------------------------------------------------- /app/playground/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/index.ts -------------------------------------------------------------------------------- /app/playground/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/playground/page.tsx -------------------------------------------------------------------------------- /app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/pricing/page.tsx -------------------------------------------------------------------------------- /app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/privacy/page.tsx -------------------------------------------------------------------------------- /app/profile/[userId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/profile/[userId]/page.tsx -------------------------------------------------------------------------------- /app/profile/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/profile/edit/page.tsx -------------------------------------------------------------------------------- /app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/profile/page.tsx -------------------------------------------------------------------------------- /app/providers/AppProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/providers/AppProvider.tsx -------------------------------------------------------------------------------- /app/research/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/research/page.tsx -------------------------------------------------------------------------------- /app/roadmap/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/roadmap/page.tsx -------------------------------------------------------------------------------- /app/sell-your-model/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/sell-your-model/page.tsx -------------------------------------------------------------------------------- /app/settings/api-keys/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/settings/api-keys/page.tsx -------------------------------------------------------------------------------- /app/showcase/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/showcase/page.tsx -------------------------------------------------------------------------------- /app/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/signin/page.tsx -------------------------------------------------------------------------------- /app/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/signup/page.tsx -------------------------------------------------------------------------------- /app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/terms/page.tsx -------------------------------------------------------------------------------- /app/testurl/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/testurl/page.tsx -------------------------------------------------------------------------------- /app/tutorials/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/tutorials/page.tsx -------------------------------------------------------------------------------- /app/upload/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/upload/page.tsx -------------------------------------------------------------------------------- /app/your-models/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/app/your-models/page.tsx -------------------------------------------------------------------------------- /components/AIAgent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/AIAgent.tsx -------------------------------------------------------------------------------- /components/AIModelExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/AIModelExplorer.tsx -------------------------------------------------------------------------------- /components/AccountDeletionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/AccountDeletionModal.tsx -------------------------------------------------------------------------------- /components/AgentKitUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/AgentKitUI.tsx -------------------------------------------------------------------------------- /components/AnimatedLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/AnimatedLogo.tsx -------------------------------------------------------------------------------- /components/Animated_Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/Animated_Logo.jsx -------------------------------------------------------------------------------- /components/ApiKeyManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ApiKeyManager.tsx -------------------------------------------------------------------------------- /components/ApplicationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ApplicationModal.tsx -------------------------------------------------------------------------------- /components/BackgroundParticles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/BackgroundParticles.jsx -------------------------------------------------------------------------------- /components/BackgroundParticles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/BackgroundParticles.tsx -------------------------------------------------------------------------------- /components/Brand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/Brand.tsx -------------------------------------------------------------------------------- /components/BuyModelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/BuyModelButton.tsx -------------------------------------------------------------------------------- /components/CoinbaseWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/CoinbaseWallet.tsx -------------------------------------------------------------------------------- /components/DatasetExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/DatasetExplorer.tsx -------------------------------------------------------------------------------- /components/EventFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/EventFormModal.tsx -------------------------------------------------------------------------------- /components/FeaturedModels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/FeaturedModels.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/GitHubRepoExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/GitHubRepoExplorer.tsx -------------------------------------------------------------------------------- /components/ImageGenerator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ImageGenerator.tsx -------------------------------------------------------------------------------- /components/JobListingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/JobListingsModal.tsx -------------------------------------------------------------------------------- /components/KaggleDatasetExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/KaggleDatasetExplorer.tsx -------------------------------------------------------------------------------- /components/LeaderboardSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/LeaderboardSection.tsx -------------------------------------------------------------------------------- /components/LoadingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/LoadingScreen.tsx -------------------------------------------------------------------------------- /components/LoadingShowcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/LoadingShowcase.tsx -------------------------------------------------------------------------------- /components/ModelAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ModelAnalytics.tsx -------------------------------------------------------------------------------- /components/ModelCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ModelCard.tsx -------------------------------------------------------------------------------- /components/ModelComparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ModelComparison.tsx -------------------------------------------------------------------------------- /components/ModelPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ModelPreview.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/NewsletterDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/NewsletterDialog.tsx -------------------------------------------------------------------------------- /components/OptimizedImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/OptimizedImage.tsx -------------------------------------------------------------------------------- /components/PaymentOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/PaymentOptions.tsx -------------------------------------------------------------------------------- /components/ProfileAvatarUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ProfileAvatarUpload.tsx -------------------------------------------------------------------------------- /components/ProfileCompleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ProfileCompleteModal.tsx -------------------------------------------------------------------------------- /components/ProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ProfilePage.tsx -------------------------------------------------------------------------------- /components/QuoteDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/QuoteDisplay.tsx -------------------------------------------------------------------------------- /components/ReviewSystem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ReviewSystem.tsx -------------------------------------------------------------------------------- /components/SearchAndFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/SearchAndFilter.tsx -------------------------------------------------------------------------------- /components/SellerCTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/SellerCTA.tsx -------------------------------------------------------------------------------- /components/SimpleCryptoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/SimpleCryptoButton.tsx -------------------------------------------------------------------------------- /components/SpaceBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/SpaceBackground.tsx -------------------------------------------------------------------------------- /components/SplashScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/SplashScreen.tsx -------------------------------------------------------------------------------- /components/SubscriptionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/SubscriptionButton.tsx -------------------------------------------------------------------------------- /components/TourGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/TourGuide.tsx -------------------------------------------------------------------------------- /components/UploadForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/UploadForm.jsx -------------------------------------------------------------------------------- /components/UploadForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/UploadForm.tsx -------------------------------------------------------------------------------- /components/UploadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/UploadModal.tsx -------------------------------------------------------------------------------- /components/UserProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/UserProfile.jsx -------------------------------------------------------------------------------- /components/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/UserProfile.tsx -------------------------------------------------------------------------------- /components/WalletConnect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/WalletConnect.tsx -------------------------------------------------------------------------------- /components/dashboard/CustomerManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/dashboard/CustomerManagement.tsx -------------------------------------------------------------------------------- /components/dashboard/ModelAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/dashboard/ModelAnalytics.tsx -------------------------------------------------------------------------------- /components/dashboard/SalesAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/dashboard/SalesAnalytics.tsx -------------------------------------------------------------------------------- /components/layouts/AdminLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/layouts/AdminLayout.tsx -------------------------------------------------------------------------------- /components/modals/EventFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/modals/EventFormModal.tsx -------------------------------------------------------------------------------- /components/ui/AIAssistantButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/AIAssistantButton.tsx -------------------------------------------------------------------------------- /components/ui/ThemeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/ThemeSwitch.tsx -------------------------------------------------------------------------------- /components/ui/animated-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/animated-button.tsx -------------------------------------------------------------------------------- /components/ui/animated-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/animated-card.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/loading-animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/loading-animation.tsx -------------------------------------------------------------------------------- /components/ui/loading-overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/loading-overlay.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /cookie_polocy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/cookie_polocy.md -------------------------------------------------------------------------------- /dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/dev-server.js -------------------------------------------------------------------------------- /development_challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/development_challenges.md -------------------------------------------------------------------------------- /docs/email-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/docs/email-service.md -------------------------------------------------------------------------------- /docs/storage-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/docs/storage-service.md -------------------------------------------------------------------------------- /docs/technical-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/docs/technical-specification.md -------------------------------------------------------------------------------- /docs/user-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/docs/user-profiles.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/eslint.config.js -------------------------------------------------------------------------------- /firebase-rules/firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/firebase-rules/firestore.indexes.json -------------------------------------------------------------------------------- /firebase-rules/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/firebase-rules/firestore.rules -------------------------------------------------------------------------------- /firebase-rules/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/firebase-rules/storage.rules -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/firebase.json -------------------------------------------------------------------------------- /google752f5511934d5388.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/google752f5511934d5388.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/index.html -------------------------------------------------------------------------------- /issues/01-JWT-API-Key-Generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/01-JWT-API-Key-Generation.md -------------------------------------------------------------------------------- /issues/02-API-Documentation-System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/02-API-Documentation-System.md -------------------------------------------------------------------------------- /issues/03-API-Rate-Limiting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/03-API-Rate-Limiting.md -------------------------------------------------------------------------------- /issues/04-API-Versioning-Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/04-API-Versioning-Strategy.md -------------------------------------------------------------------------------- /issues/05-API-Error-Handling-Standardization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/05-API-Error-Handling-Standardization.md -------------------------------------------------------------------------------- /issues/06-API-Caching-Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/06-API-Caching-Strategy.md -------------------------------------------------------------------------------- /issues/07-API-Client-SDK-Generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/07-API-Client-SDK-Generation.md -------------------------------------------------------------------------------- /issues/08-API-Metrics-and-Monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/08-API-Metrics-and-Monitoring.md -------------------------------------------------------------------------------- /issues/09-API-Key-Management-UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/09-API-Key-Management-UI.md -------------------------------------------------------------------------------- /issues/10-API-Webhooks-System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/10-API-Webhooks-System.md -------------------------------------------------------------------------------- /issues/11-GraphQL-API-Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/11-GraphQL-API-Implementation.md -------------------------------------------------------------------------------- /issues/12-API-Integration-Testing-Framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/12-API-Integration-Testing-Framework.md -------------------------------------------------------------------------------- /issues/13-Component-Lazy-Loading-Optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/13-Component-Lazy-Loading-Optimization.md -------------------------------------------------------------------------------- /issues/14-Responsive-Design-Improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/14-Responsive-Design-Improvements.md -------------------------------------------------------------------------------- /issues/15-Accessibility-Compliance-Overhaul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/15-Accessibility-Compliance-Overhaul.md -------------------------------------------------------------------------------- /issues/16-Authentication-Flow-Enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/16-Authentication-Flow-Enhancement.md -------------------------------------------------------------------------------- /issues/17-Database-Schema-Optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/17-Database-Schema-Optimization.md -------------------------------------------------------------------------------- /issues/18-SEO-and-Metadata-Enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/18-SEO-and-Metadata-Enhancement.md -------------------------------------------------------------------------------- /issues/19-Error-Handling-and-Resilience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/19-Error-Handling-and-Resilience.md -------------------------------------------------------------------------------- /issues/20-State-Management-Refactoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/20-State-Management-Refactoring.md -------------------------------------------------------------------------------- /issues/21-Build-and-Deployment-Pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/21-Build-and-Deployment-Pipeline.md -------------------------------------------------------------------------------- /issues/22-Automated-Testing-Framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/22-Automated-Testing-Framework.md -------------------------------------------------------------------------------- /issues/23-Test-Driven-Development-Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/23-Test-Driven-Development-Implementation.md -------------------------------------------------------------------------------- /issues/24-Database-Migration-and-Version-Control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/24-Database-Migration-and-Version-Control.md -------------------------------------------------------------------------------- /issues/25-Web3-Integration-Framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/25-Web3-Integration-Framework.md -------------------------------------------------------------------------------- /issues/26-Backend-Service-Architecture-Refactoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/26-Backend-Service-Architecture-Refactoring.md -------------------------------------------------------------------------------- /issues/27-Data-Backup-and-Recovery-System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/27-Data-Backup-and-Recovery-System.md -------------------------------------------------------------------------------- /issues/28-Backend-Performance-Optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/28-Backend-Performance-Optimization.md -------------------------------------------------------------------------------- /issues/29-API-Rate-Limiting-and-Throttling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/29-API-Rate-Limiting-and-Throttling.md -------------------------------------------------------------------------------- /issues/30-Continuous-Integration-for-Frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/30-Continuous-Integration-for-Frontend.md -------------------------------------------------------------------------------- /issues/31-Real-time-Notification-System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/31-Real-time-Notification-System.md -------------------------------------------------------------------------------- /issues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/issues/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/AIAgentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/AIAgentService.ts -------------------------------------------------------------------------------- /lib/DataCrawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/DataCrawler.ts -------------------------------------------------------------------------------- /lib/GitHubCrawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/GitHubCrawler.ts -------------------------------------------------------------------------------- /lib/KaggleCrawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/KaggleCrawler.ts -------------------------------------------------------------------------------- /lib/ModelCrawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/ModelCrawler.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/coinbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/coinbase.ts -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/firebase.ts -------------------------------------------------------------------------------- /lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/fonts.ts -------------------------------------------------------------------------------- /lib/gcloud-storage-direct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/gcloud-storage-direct.ts -------------------------------------------------------------------------------- /lib/gcloud-storage-fallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/gcloud-storage-fallback.js -------------------------------------------------------------------------------- /lib/gcloud-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/gcloud-storage.ts -------------------------------------------------------------------------------- /lib/models/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/models/blog.ts -------------------------------------------------------------------------------- /lib/models/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/models/model.ts -------------------------------------------------------------------------------- /lib/models/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/models/post.ts -------------------------------------------------------------------------------- /lib/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/models/user.ts -------------------------------------------------------------------------------- /lib/mongodb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/mongodb.ts -------------------------------------------------------------------------------- /lib/polyfills/timers-promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/polyfills/timers-promises.js -------------------------------------------------------------------------------- /lib/react-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/react-imports.ts -------------------------------------------------------------------------------- /lib/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/runtime.js -------------------------------------------------------------------------------- /lib/services/api-key-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/api-key-service.ts -------------------------------------------------------------------------------- /lib/services/email-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/email-service.js -------------------------------------------------------------------------------- /lib/services/email-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/email-service.ts -------------------------------------------------------------------------------- /lib/services/model-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/model-service.ts -------------------------------------------------------------------------------- /lib/services/storage-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/storage-service.js -------------------------------------------------------------------------------- /lib/services/storage-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/storage-service.ts -------------------------------------------------------------------------------- /lib/services/user-profile-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/user-profile-service.js -------------------------------------------------------------------------------- /lib/services/user-profile-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/user-profile-service.ts -------------------------------------------------------------------------------- /lib/services/user-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/services/user-service.ts -------------------------------------------------------------------------------- /lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/store.ts -------------------------------------------------------------------------------- /lib/supabase-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/supabase-setup.ts -------------------------------------------------------------------------------- /lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/supabase.ts -------------------------------------------------------------------------------- /lib/supabase/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/supabase/server.ts -------------------------------------------------------------------------------- /lib/test-gcloud-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/test-gcloud-storage.js -------------------------------------------------------------------------------- /lib/types/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/types/storage.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/utils/fileStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/utils/fileStorage.ts -------------------------------------------------------------------------------- /lib/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/validation.ts -------------------------------------------------------------------------------- /lib/vercel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/lib/vercel.ts -------------------------------------------------------------------------------- /middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/middleware.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/next.config.js -------------------------------------------------------------------------------- /next.edge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/next.edge.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/package.json -------------------------------------------------------------------------------- /pages/api/profile/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/pages/api/profile/avatar.ts -------------------------------------------------------------------------------- /pages/api/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/pages/api/profile/index.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/postcss.config.js -------------------------------------------------------------------------------- /project_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/project_overview.md -------------------------------------------------------------------------------- /providers/AIAgentProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/AIAgentProvider.tsx -------------------------------------------------------------------------------- /providers/AdminAuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/AdminAuthProvider.tsx -------------------------------------------------------------------------------- /providers/AppProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/AppProvider.tsx -------------------------------------------------------------------------------- /providers/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/AuthProvider.tsx -------------------------------------------------------------------------------- /providers/CoinbaseAgentProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/CoinbaseAgentProvider.tsx -------------------------------------------------------------------------------- /providers/CoinbaseProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/CoinbaseProvider.tsx -------------------------------------------------------------------------------- /providers/EthersWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/EthersWrapper.ts -------------------------------------------------------------------------------- /providers/ModalProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/ModalProvider.tsx -------------------------------------------------------------------------------- /providers/SimpleCryptoProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/SimpleCryptoProvider.tsx -------------------------------------------------------------------------------- /providers/SupabaseProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/SupabaseProvider.tsx -------------------------------------------------------------------------------- /providers/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/ThemeProvider.tsx -------------------------------------------------------------------------------- /providers/Web3Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/Web3Provider.tsx -------------------------------------------------------------------------------- /providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/providers/index.tsx -------------------------------------------------------------------------------- /public/animated-logo.gif: -------------------------------------------------------------------------------- 1 | animated-logo.svg -------------------------------------------------------------------------------- /public/animated-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/animated-logo.svg -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | apple-touch-icon.svg -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/apple-touch-icon-precomposed.svg -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | apple-touch-icon.svg -------------------------------------------------------------------------------- /public/apple-touch-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/apple-touch-icon.svg -------------------------------------------------------------------------------- /public/auth-callback-static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/auth-callback-static.html -------------------------------------------------------------------------------- /public/avatars/test-user-1749129516396-1749129516406.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/avatars/test-user-1749129516396-1749129516406.png -------------------------------------------------------------------------------- /public/avatars/test-user-1749130468167-1749130468174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/avatars/test-user-1749130468167-1749130468174.png -------------------------------------------------------------------------------- /public/fallback-static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/fallback-static.html -------------------------------------------------------------------------------- /public/featured-bg.jpg: -------------------------------------------------------------------------------- 1 | featured-bg.svg -------------------------------------------------------------------------------- /public/featured-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/featured-bg.svg -------------------------------------------------------------------------------- /public/google752f5511934d5388.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/google752f5511934d5388.html -------------------------------------------------------------------------------- /public/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/grid.svg -------------------------------------------------------------------------------- /public/images/Chandigarh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/images/Chandigarh.png -------------------------------------------------------------------------------- /public/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/images/Logo.png -------------------------------------------------------------------------------- /public/images/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/images/discord.png -------------------------------------------------------------------------------- /public/images/imagee6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/images/imagee6.png -------------------------------------------------------------------------------- /public/noise.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/partners/7123025_logo_google_g_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/partners/7123025_logo_google_g_icon.svg -------------------------------------------------------------------------------- /public/partners/icons8-chatgpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/partners/icons8-chatgpt.svg -------------------------------------------------------------------------------- /public/partners/icons8-ibm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/partners/icons8-ibm.svg -------------------------------------------------------------------------------- /public/partners/icons8-meta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/partners/icons8-meta.svg -------------------------------------------------------------------------------- /public/partners/icons8-nvidia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/partners/icons8-nvidia.svg -------------------------------------------------------------------------------- /public/signin-static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/signin-static.html -------------------------------------------------------------------------------- /public/signup-static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/signup-static.html -------------------------------------------------------------------------------- /public/team/Avya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/team/Avya.png -------------------------------------------------------------------------------- /public/team/Fatima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/team/Fatima.png -------------------------------------------------------------------------------- /public/team/Mantej.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/team/Mantej.png -------------------------------------------------------------------------------- /public/test-files/test-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/test-files/test-file.txt -------------------------------------------------------------------------------- /public/tonconnect-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/public/tonconnect-manifest.json -------------------------------------------------------------------------------- /public/uploads/files/test-files/test-1749107639365.txt: -------------------------------------------------------------------------------- 1 | This is a test file for upload -------------------------------------------------------------------------------- /scripts/README-platform-stats-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/README-platform-stats-fix.md -------------------------------------------------------------------------------- /scripts/README-platform-stats-production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/README-platform-stats-production.md -------------------------------------------------------------------------------- /scripts/clear-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/clear-cache.js -------------------------------------------------------------------------------- /scripts/direct-db-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/direct-db-update.js -------------------------------------------------------------------------------- /scripts/edge-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/edge-config.js -------------------------------------------------------------------------------- /scripts/fix-middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/fix-middleware.js -------------------------------------------------------------------------------- /scripts/fix-oauth-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/fix-oauth-instructions.md -------------------------------------------------------------------------------- /scripts/fix-oauth-via-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/fix-oauth-via-api.js -------------------------------------------------------------------------------- /scripts/fix-react-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/fix-react-build.js -------------------------------------------------------------------------------- /scripts/patch-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/patch-build.js -------------------------------------------------------------------------------- /scripts/prepare-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/prepare-build.js -------------------------------------------------------------------------------- /scripts/purge-edge-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/purge-edge-modules.js -------------------------------------------------------------------------------- /scripts/setup-gcs-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/setup-gcs-auth.js -------------------------------------------------------------------------------- /scripts/supabase-create-user-count-function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/supabase-create-user-count-function.sql -------------------------------------------------------------------------------- /scripts/supabase-dashboard-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/supabase-dashboard-fix.md -------------------------------------------------------------------------------- /scripts/supabase-oauth-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/supabase-oauth-update.js -------------------------------------------------------------------------------- /scripts/test-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/test-avatar.png -------------------------------------------------------------------------------- /scripts/update-auth-settings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/update-auth-settings.sql -------------------------------------------------------------------------------- /scripts/update-oauth-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/update-oauth-display.js -------------------------------------------------------------------------------- /scripts/update-supabase-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/update-supabase-config.js -------------------------------------------------------------------------------- /scripts/vercel-build-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/vercel-build-hook.js -------------------------------------------------------------------------------- /scripts/vercel-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/vercel-build.js -------------------------------------------------------------------------------- /scripts/verify-sendgrid-sender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/scripts/verify-sendgrid-sender.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/animations/BrainAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/animations/BrainAnimation.tsx -------------------------------------------------------------------------------- /src/components/auth/AuthLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/auth/AuthLayout.tsx -------------------------------------------------------------------------------- /src/components/auth/SignInForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/auth/SignInForm.tsx -------------------------------------------------------------------------------- /src/components/auth/SignInMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/auth/SignInMenu.tsx -------------------------------------------------------------------------------- /src/components/ui/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/Badge.tsx -------------------------------------------------------------------------------- /src/components/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/Button.tsx -------------------------------------------------------------------------------- /src/components/ui/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/Card.tsx -------------------------------------------------------------------------------- /src/components/ui/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/Input.tsx -------------------------------------------------------------------------------- /src/components/ui/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/Modal.tsx -------------------------------------------------------------------------------- /src/components/ui/PartnerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/PartnerCard.tsx -------------------------------------------------------------------------------- /src/components/ui/PartnerTabs.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ui/PartnershipJourney.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ui/PartnershipTypeCard.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ui/PasswordStrengthMeter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/PasswordStrengthMeter.tsx -------------------------------------------------------------------------------- /src/components/ui/ProfileSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/ProfileSidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/ScrollArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/ScrollArea.tsx -------------------------------------------------------------------------------- /src/components/ui/SecurityModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/SecurityModal.tsx -------------------------------------------------------------------------------- /src/components/ui/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/Skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/Table.tsx -------------------------------------------------------------------------------- /src/components/ui/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/ui/UsernameSuggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/components/ui/UsernameSuggestions.tsx -------------------------------------------------------------------------------- /src/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/hooks/useTheme.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/styles/animations.css -------------------------------------------------------------------------------- /src/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/styles/theme.css -------------------------------------------------------------------------------- /src/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/src/utils/markdown.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/confirm_sign_up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/templates/confirm_sign_up.html -------------------------------------------------------------------------------- /test-scripts/test-direct-gcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-direct-gcs.js -------------------------------------------------------------------------------- /test-scripts/test-gcloud-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-gcloud-storage.js -------------------------------------------------------------------------------- /test-scripts/test-gcs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-gcs-config.js -------------------------------------------------------------------------------- /test-scripts/test-gcs-upload.txt: -------------------------------------------------------------------------------- 1 | Test file created at 2025-06-05T13:03:30.530Z -------------------------------------------------------------------------------- /test-scripts/test-mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-mongodb.js -------------------------------------------------------------------------------- /test-scripts/test-profile-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-profile-system.js -------------------------------------------------------------------------------- /test-scripts/test-sendgrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-sendgrid.js -------------------------------------------------------------------------------- /test-scripts/test-smtp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-smtp.js -------------------------------------------------------------------------------- /test-scripts/test-storage-fallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-storage-fallback.js -------------------------------------------------------------------------------- /test-scripts/test-storage-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-storage-service.js -------------------------------------------------------------------------------- /test-scripts/test-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-storage.js -------------------------------------------------------------------------------- /test-scripts/test-user-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/test-scripts/test-user-profile.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /types/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/types/community.ts -------------------------------------------------------------------------------- /updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/updates.md -------------------------------------------------------------------------------- /utils/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/utils/supabase.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drago-03/Neural-Nexus/HEAD/vite.config.ts.backup --------------------------------------------------------------------------------