├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── bun.lockb ├── components.json ├── components ├── Feature.tsx └── TopBar.tsx ├── drizzle.config.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── card-01.png ├── card-02.png ├── card-03.png ├── ellipse-back.webp ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── git.svg ├── github-oss-animation.svg ├── images │ ├── bridge.jpg │ └── og-image.png ├── landing │ ├── Record (online-voice-recorder.com).mp3 │ ├── feature │ │ ├── feature1.webp │ │ ├── feature2.webp │ │ ├── feature3.webp │ │ ├── feature4.webp │ │ ├── feature5.webp │ │ ├── feature6.webp │ │ └── feature7.webp │ ├── gradient-icon.webp │ ├── gradient-icon2.webp │ ├── icon-logos │ │ ├── logo1.webp │ │ ├── logo2.webp │ │ ├── logo3.webp │ │ ├── logo4.webp │ │ ├── logo5.webp │ │ ├── logo6.webp │ │ └── logo7.webp │ ├── lights │ │ ├── horizontal-light.webp │ │ ├── light-1 copy.webp │ │ ├── light-1-srcset-1.png │ │ ├── light-1-srcset-2.png │ │ ├── light-1-webp │ │ ├── light-2-srcset-1.png │ │ ├── light-2-srcset-2.png │ │ ├── light-2.webp │ │ ├── light.webp │ │ └── typescript-logo-svgrepo-com.svg │ ├── powered │ │ ├── shape.webp │ │ └── shape2.svg │ ├── right-bottom.webp │ ├── right.png │ └── usps │ │ ├── 1.webp │ │ ├── 2.webp │ │ └── 3.webp ├── menu │ ├── blog1.jpg │ └── blog2.jpeg ├── next.svg ├── site.webmanifest └── vercel.svg ├── src ├── app │ ├── (non-dashboard) │ │ ├── (auth) │ │ │ ├── layout.tsx │ │ │ ├── sign-in │ │ │ │ └── page.tsx │ │ │ └── sign-up │ │ │ │ └── page.tsx │ │ ├── (landing) │ │ │ ├── _components │ │ │ │ ├── Video │ │ │ │ │ ├── Video.tsx │ │ │ │ │ └── video.module.scss │ │ │ │ ├── __development │ │ │ │ │ └── font-showcase.tsx │ │ │ │ ├── content-gradient │ │ │ │ │ ├── content.module.scss │ │ │ │ │ └── gradient-content.tsx │ │ │ │ ├── cta-section │ │ │ │ │ ├── CTAsection.module.scss │ │ │ │ │ └── cta-section.tsx │ │ │ │ ├── effects │ │ │ │ │ ├── home-lights.tsx │ │ │ │ │ ├── landing-effects.tsx │ │ │ │ │ └── lights.tsx │ │ │ │ ├── faq │ │ │ │ │ ├── faq-item.tsx │ │ │ │ │ └── faq.tsx │ │ │ │ ├── feature │ │ │ │ │ ├── _components │ │ │ │ │ │ └── emoji-badges.tsx │ │ │ │ │ ├── feature.module.scss │ │ │ │ │ └── feature.tsx │ │ │ │ ├── footer │ │ │ │ │ ├── footer.d.ts │ │ │ │ │ ├── footer.module.scss │ │ │ │ │ └── footer.tsx │ │ │ │ ├── hero │ │ │ │ │ ├── ZenWealth │ │ │ │ │ │ ├── Description.tsx │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ ├── ZenWealth.tsx │ │ │ │ │ │ └── ZenWealthContainer.tsx │ │ │ │ │ ├── hero.module.scss │ │ │ │ │ └── hero.tsx │ │ │ │ ├── horizontal-line.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── logo-section │ │ │ │ │ ├── logo-section.tsx │ │ │ │ │ └── logos.module.scss │ │ │ │ ├── navigation │ │ │ │ │ ├── _components │ │ │ │ │ │ ├── hero-badge.tsx │ │ │ │ │ │ ├── logo.tsx │ │ │ │ │ │ └── sign-in-button.tsx │ │ │ │ │ ├── header.d.ts │ │ │ │ │ ├── header.module.scss │ │ │ │ │ └── header.tsx │ │ │ │ ├── page-container.tsx │ │ │ │ ├── powered-by │ │ │ │ │ ├── Marquee.tsx │ │ │ │ │ ├── carousel-brands.ts │ │ │ │ │ ├── integration-title.module.scss │ │ │ │ │ ├── integration-title.tsx │ │ │ │ │ ├── powered-by.module.scss │ │ │ │ │ └── powered-by.tsx │ │ │ │ ├── rainbow-line.tsx │ │ │ │ └── text-marquee │ │ │ │ │ ├── MarqueeItems.tsx │ │ │ │ │ ├── usp-marquee.tsx │ │ │ │ │ └── video.module.scss │ │ │ ├── b │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── styles │ │ │ │ ├── app.scss │ │ │ │ ├── landing.scss │ │ │ │ ├── modules │ │ │ │ ├── horizontal-line.module.css │ │ │ │ ├── lights.module.scss │ │ │ │ ├── noise.module.css │ │ │ │ └── noise.png │ │ │ │ ├── theme │ │ │ │ ├── _fonts.scss │ │ │ │ └── _typography.scss │ │ │ │ └── utils │ │ │ │ └── utillity-classes.scss │ │ ├── (miscellaneous) │ │ │ ├── changelog │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── design-system │ │ │ │ ├── _components │ │ │ │ │ ├── DesignSystemWrapper.tsx │ │ │ │ │ └── DirectionAwareNav.tsx │ │ │ │ ├── card-spotlight │ │ │ │ │ └── page.tsx │ │ │ │ └── notice │ │ │ │ │ └── page.tsx │ │ │ ├── hooks-showcase │ │ │ │ ├── _components │ │ │ │ │ └── hooks-showcase-wrapper.tsx │ │ │ │ ├── geolocation │ │ │ │ │ ├── _components │ │ │ │ │ │ ├── geolocation-showcase.tsx │ │ │ │ │ │ └── geolocation.loader.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── palette │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── old-landing │ │ │ │ └── page.tsx │ │ ├── docs │ │ │ ├── kanban-board │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── todo │ │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── api │ │ ├── account │ │ │ └── route.ts │ │ └── auth │ │ │ ├── logout │ │ │ └── route.ts │ │ │ └── session │ │ │ └── route.ts │ ├── dashboard │ │ ├── activity │ │ │ └── page.tsx │ │ ├── client-wrapper.tsx │ │ ├── finance │ │ │ ├── _components │ │ │ │ ├── add-transaction-form.tsx │ │ │ │ ├── display-goal.tsxpwd │ │ │ │ ├── expense-breakdown.tsx │ │ │ │ ├── finance-dashboard.tsx │ │ │ │ ├── recent-transactions.tsx │ │ │ │ ├── set-budget-goal.tsx │ │ │ │ ├── set-goal-form.tsx │ │ │ │ └── summary-card.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── folders │ │ │ ├── _components │ │ │ │ ├── file-tree.tsx │ │ │ │ ├── folder-context-menu.tsx │ │ │ │ └── new-folder-form.tsx │ │ │ ├── _hooks │ │ │ │ ├── updated-file-operations-hook.ts │ │ │ │ └── use-file-operations.ts │ │ │ └── page.tsx │ │ ├── ig-follower-parser │ │ │ ├── _components │ │ │ │ └── csv-ig-parser.tsx │ │ │ └── page.tsx │ │ ├── layout.client.tsx │ │ ├── layout.tsx │ │ ├── media-recorder │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── profile │ │ │ ├── ProfileForm.tsx │ │ │ ├── appearance.tsx │ │ │ ├── get-user-profile.ts │ │ │ └── page.tsx │ │ ├── tasks │ │ │ └── page.tsx │ │ └── text-processor │ │ │ ├── id-username │ │ │ └── page.tsx │ │ │ └── page.tsx │ ├── favicon.ico │ ├── layout.tsx │ ├── loading.tsx │ ├── not-found.tsx │ ├── opengraph-image.png │ ├── robots.ts │ └── sitemap.ts ├── components │ ├── Banner.tsx │ ├── DeploymentInfo.tsx │ ├── Sidebar.tsx │ ├── ThemeProvider.tsx │ ├── _development-utils │ │ ├── auth-status-indicator.tsx │ │ ├── color-picker.tsx │ │ ├── color-utils.tsx │ │ └── tailwind-color-palette.tsx │ ├── _old-landing │ │ ├── Hero │ │ │ ├── Gradual-spacing.tsx │ │ │ ├── Hero.tsx │ │ │ ├── Maq.tsx │ │ │ ├── Scrolls.tsx │ │ │ └── ShinyLighs.tsx │ │ ├── bent-grid.tsx │ │ ├── bento-grid-parent.tsx │ │ ├── bento-grid.config.ts │ │ ├── bento-grid │ │ │ ├── animated-beam-multiple-outputs.tsx │ │ │ ├── animated-list-demo.tsx │ │ │ ├── bento-grid-parent.tsx │ │ │ ├── bento-grid.config.ts │ │ │ └── bento-grid.tsx │ │ ├── footer.tsx │ │ └── spotlight-card │ │ │ └── spotlight-cards.tsx │ ├── aside │ │ ├── route-specific │ │ │ ├── dashboard-home-aside.tsx │ │ │ ├── folders-aside.tsx │ │ │ ├── ig-parsed-aside.tsx │ │ │ ├── notes-aside.tsx │ │ │ └── settings-aside.tsx │ │ ├── sidebar.tsx │ │ ├── site-settings-menu.tsx │ │ ├── skeleton.sidebbar.tsx │ │ ├── skeleton.sub-sidebar.tsx │ │ ├── sub-sidebar-shell.tsx │ │ └── types.sidear.d.ts │ ├── atoms │ │ ├── @@Kbd.tsx │ │ ├── Center.tsx │ │ ├── Flex.tsx │ │ ├── Spacer.tsx │ │ ├── index.ts │ │ └── kbd.tsx │ ├── auth │ │ ├── auth.d.ts │ │ ├── onboarding.tsx │ │ ├── sign-in-form.tsx │ │ ├── sign-out-button.tsx │ │ ├── sign-up-form.tsx │ │ ├── user-dropdown-menu │ │ │ ├── user-dropdown-button.tsx │ │ │ ├── user-dropdown-menu-item.tsx │ │ │ └── user-dropdown-menu.tsx │ │ └── with-user-info.tsx │ ├── base │ │ ├── Icons.tsx │ │ ├── ThemeWrapper.tsx │ │ ├── icons.tsx │ │ ├── layout │ │ │ └── main-content-wrapper.tsx │ │ └── logo.tsx │ ├── dashboard │ │ ├── features │ │ │ ├── activity │ │ │ │ ├── activities.d.ts │ │ │ │ ├── activities.tsx │ │ │ │ ├── activity-card.tsx │ │ │ │ ├── activity-feed.tsx │ │ │ │ ├── activity-list.tsx │ │ │ │ ├── animate-height.tsx │ │ │ │ ├── create-activity-form.tsx │ │ │ │ ├── create-activity-popover.tsx │ │ │ │ ├── mock-activity-api.ts │ │ │ │ ├── recent-activities.tsx │ │ │ │ └── use-activities.ts │ │ │ ├── intro │ │ │ │ ├── current-time.tsx │ │ │ │ └── get-weather.tsx │ │ │ └── tasks │ │ │ │ ├── create-task-popover.tsx │ │ │ │ ├── task-board.tsx │ │ │ │ ├── task-detail-popover.tsx │ │ │ │ ├── task-item.tsx │ │ │ │ ├── task-list.tsx │ │ │ │ └── task-management.tsx │ │ ├── layout │ │ │ └── top-bar │ │ │ │ └── top-bar.tsx │ │ ├── no-data-state.tsx │ │ ├── onboarding-trigger.tsx │ │ └── weather-time.tsx │ ├── effects │ │ ├── animated-beam.tsx │ │ ├── animated-list.tsx │ │ ├── blur-in.tsx │ │ ├── card-spotlight │ │ │ ├── card-spotlight.tsx │ │ │ ├── use-mouse-position.ts │ │ │ └── useMousePosition.ts │ │ ├── confetti.tsx │ │ ├── empty-state-loader.tsx │ │ ├── fade-in.tsx │ │ ├── gitihu-oss │ │ │ ├── ShinyLighs.tsx │ │ │ ├── github-open-source.tsx │ │ │ ├── oss-chips.tsx │ │ │ └── oss-light.tsx │ │ ├── globe │ │ │ └── world-globe.tsx │ │ ├── glow-text-effect.tsx │ │ ├── hover-card.tsx │ │ ├── loaders │ │ │ ├── heartbeat-loader.tsx │ │ │ ├── loading-dots.tsx │ │ │ ├── skeleton-loader.tsx │ │ │ └── skeleton.tsx │ │ ├── number-ticker.tsx │ │ ├── onboarding-trigger.tsx │ │ ├── particles.tsx │ │ ├── ripple.tsx │ │ ├── shiny-button.tsx │ │ ├── show-hide.tsx │ │ ├── sortable-list.tsx │ │ └── spotlight.txt │ ├── elements │ │ ├── crud │ │ │ ├── add-note-modal.tsx │ │ │ ├── confirm-dialog.tsx │ │ │ ├── confirmation-modal.tsx │ │ │ ├── create-folder-modal.tsx │ │ │ ├── crud-button.tsx │ │ │ └── edit-folder-modal.tsx │ │ ├── custom-dropdown.tsx │ │ ├── dark-light-toggle.tsx │ │ ├── display-code │ │ │ ├── code-block.tsx │ │ │ ├── code-highlight │ │ │ │ ├── CodeContent.tsx │ │ │ │ ├── FileHeader.tsx │ │ │ │ ├── code-highlight.tsx │ │ │ │ └── types.code-highlight.ts │ │ │ └── command-inline-code.tsx │ │ ├── index.ts │ │ ├── notice-box.tsx │ │ ├── notification-bar │ │ │ └── notification-bar.tsx │ │ ├── search.tsx │ │ └── tree-renderer.tsx │ ├── features │ │ ├── record-peripherals │ │ │ ├── audio-recorder.tsx │ │ │ ├── display-webcam.tsx │ │ │ ├── peripherals-recorder.tsx │ │ │ ├── video-recorder.tsx │ │ │ └── volume-slider.tsx │ │ └── text-processor │ │ │ ├── text-processor copy.tsx │ │ │ └── text-processor.tsx │ ├── rich-text-editor.tsx │ ├── sidebar-items.tsx │ ├── tiptap-editor.tsx │ └── ui │ │ ├── ThemeToggle.tsx │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── animations.ts │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── cals.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── color-picker.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── icon.tsx │ │ ├── index.ts │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── marquee.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── notice.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── popup.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── simple-checkbox.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── spinner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── useFormField.tsx ├── config │ ├── menu-config.ts │ ├── nav.ts │ └── site-config.ts ├── core │ ├── config │ │ ├── fonts │ │ │ ├── font.bricolage_grotesque.ts │ │ │ ├── font.pt_mono.ts │ │ │ ├── fonts.ts │ │ │ └── geist │ │ │ │ ├── GeistMonoVF.woff │ │ │ │ ├── GeistVF.woff │ │ │ │ └── font.geist.ts │ │ ├── locales │ │ │ ├── en.ts │ │ │ └── locales.ts │ │ ├── menu-items │ │ │ ├── dashboard-navigation-menu-items.ts │ │ │ ├── design-system-menu.items.ts │ │ │ ├── dropdown-menu.items.ts │ │ │ └── sidebar-menu-items.ts │ │ ├── metadata │ │ │ ├── dashboard.metadata.ts │ │ │ └── metadata.root-layout.ts │ │ ├── nav.ts │ │ └── site-config.ts │ ├── constants │ │ ├── animations.ts │ │ ├── cn-tw.ts │ │ └── generate-uuid.ts │ ├── hooks │ │ ├── _hook_helpers │ │ │ ├── use-event-callback.ts │ │ │ ├── use-event-listener.ts │ │ │ └── use-isomorphic-layout-effect.ts │ │ ├── index.ts │ │ ├── use-copy-clipboard.ts │ │ ├── use-dev-mode.ts │ │ ├── use-geo-location.ts │ │ ├── use-keyboard-shortcuts.ts │ │ ├── use-local-storage.ts │ │ ├── use-mouse-hover.ts │ │ ├── use-skeleton-loader.ts │ │ └── use-user-info.ts │ ├── models │ │ ├── activities.ts │ │ ├── folders.z.ts │ │ └── index.ts │ ├── scripts │ │ └── fix-imports │ │ │ ├── optimize-iu-imports.mdx │ │ │ └── optimize-ui-imports.py │ ├── server │ │ ├── actions │ │ │ ├── activities │ │ │ │ └── create-activity.ts │ │ │ ├── activity-log │ │ │ │ ├── fetch-activity.ts │ │ │ │ ├── index.ts │ │ │ │ └── log-activity.ts │ │ │ ├── activity.ts │ │ │ ├── finance │ │ │ │ ├── budget.ts │ │ │ │ ├── goals.ts │ │ │ │ ├── index.ts │ │ │ │ └── transactions.ts │ │ │ ├── folders │ │ │ │ └── index.ts │ │ │ ├── get-visitory-city.ts │ │ │ ├── github │ │ │ │ ├── fetch-github-stats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── notes.ts │ │ │ ├── save-parsed-output.ts │ │ │ ├── save-processed-text │ │ │ │ └── save-processed-text.ts │ │ │ ├── tasks │ │ │ │ ├── add-sub-task.ts │ │ │ │ ├── add-task-label.ts │ │ │ │ ├── create-task.ts │ │ │ │ ├── get-label.ts │ │ │ │ ├── get-task.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── remove-task-label.ts │ │ │ │ ├── update-sub-task.ts │ │ │ │ ├── update-task-due-date.ts │ │ │ │ ├── update-task-priority.ts │ │ │ │ └── update-task-status.ts │ │ │ ├── update-user-profile.ts │ │ │ └── user │ │ │ │ ├── action.sign-in.ts │ │ │ │ ├── action.sign-out.ts │ │ │ │ ├── action.sign-up.ts │ │ │ │ ├── action.update-user.ts │ │ │ │ ├── index.ts │ │ │ │ └── user-profile.ts │ │ ├── auth │ │ │ ├── client-auth-utils.ts │ │ │ ├── lucia.ts │ │ │ └── utils.ts │ │ └── db │ │ │ ├── index.ts │ │ │ └── schema │ │ │ ├── activity.ts │ │ │ ├── auth.ts │ │ │ ├── finance │ │ │ ├── budget.ts │ │ │ ├── goals.ts │ │ │ ├── index.ts │ │ │ └── transactions.ts │ │ │ ├── folders.ts │ │ │ ├── index.ts │ │ │ ├── notes.ts │ │ │ ├── parsed-ig.ts │ │ │ ├── processed-text.ts │ │ │ └── tasks │ │ │ ├── index.ts │ │ │ ├── label.ts │ │ │ ├── task-label.ts │ │ │ └── task.ts │ └── stores │ │ ├── index.ts │ │ ├── store.dismiss-notification.ts │ │ ├── store.file-tree.ts │ │ ├── store.main.sidebar.ts │ │ ├── store.notes.ts │ │ ├── store.parsed.ts │ │ ├── store.site-settings.ts │ │ ├── store.sub-sidebar.ts │ │ ├── store.theme.ts │ │ └── store.toasts.ts ├── lib │ ├── actions │ │ ├── folders.ts │ │ └── notes.ts │ ├── env.mjs │ └── utils.ts ├── styles │ ├── app.scss │ ├── components │ │ ├── _hover-efffect.scss │ │ ├── _mouse-grid.scss │ │ └── _scrollar.scss │ ├── core │ │ └── _typography.scss │ ├── themes │ │ ├── _default-theme.scss │ │ └── _theme-selector.scss │ └── utillities │ │ ├── _animations.scss │ │ ├── _border.scss │ │ └── _utillities.scss └── types │ ├── canvas-confetti.d.ts │ ├── design-system.d.ts │ ├── global.d.ts │ ├── tasks.d.ts │ ├── tree-item.types.d.ts │ ├── types.folder.d.ts │ └── types.users.d.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/components.json -------------------------------------------------------------------------------- /components/Feature.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/TopBar.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/card-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/card-01.png -------------------------------------------------------------------------------- /public/card-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/card-02.png -------------------------------------------------------------------------------- /public/card-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/card-03.png -------------------------------------------------------------------------------- /public/ellipse-back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/ellipse-back.webp -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/git.svg -------------------------------------------------------------------------------- /public/github-oss-animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/github-oss-animation.svg -------------------------------------------------------------------------------- /public/images/bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/images/bridge.jpg -------------------------------------------------------------------------------- /public/images/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/images/og-image.png -------------------------------------------------------------------------------- /public/landing/Record (online-voice-recorder.com).mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/Record (online-voice-recorder.com).mp3 -------------------------------------------------------------------------------- /public/landing/feature/feature1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/feature/feature1.webp -------------------------------------------------------------------------------- /public/landing/feature/feature2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/feature/feature2.webp -------------------------------------------------------------------------------- /public/landing/feature/feature3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/feature/feature3.webp -------------------------------------------------------------------------------- /public/landing/feature/feature4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/feature/feature4.webp -------------------------------------------------------------------------------- /public/landing/feature/feature5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/feature/feature5.webp -------------------------------------------------------------------------------- /public/landing/feature/feature6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/feature/feature6.webp -------------------------------------------------------------------------------- /public/landing/feature/feature7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/feature/feature7.webp -------------------------------------------------------------------------------- /public/landing/gradient-icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/gradient-icon.webp -------------------------------------------------------------------------------- /public/landing/gradient-icon2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/gradient-icon2.webp -------------------------------------------------------------------------------- /public/landing/icon-logos/logo1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/icon-logos/logo1.webp -------------------------------------------------------------------------------- /public/landing/icon-logos/logo2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/icon-logos/logo2.webp -------------------------------------------------------------------------------- /public/landing/icon-logos/logo3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/icon-logos/logo3.webp -------------------------------------------------------------------------------- /public/landing/icon-logos/logo4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/icon-logos/logo4.webp -------------------------------------------------------------------------------- /public/landing/icon-logos/logo5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/icon-logos/logo5.webp -------------------------------------------------------------------------------- /public/landing/icon-logos/logo6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/icon-logos/logo6.webp -------------------------------------------------------------------------------- /public/landing/icon-logos/logo7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/icon-logos/logo7.webp -------------------------------------------------------------------------------- /public/landing/lights/horizontal-light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/horizontal-light.webp -------------------------------------------------------------------------------- /public/landing/lights/light-1 copy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/light-1 copy.webp -------------------------------------------------------------------------------- /public/landing/lights/light-1-srcset-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/light-1-srcset-1.png -------------------------------------------------------------------------------- /public/landing/lights/light-1-srcset-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/light-1-srcset-2.png -------------------------------------------------------------------------------- /public/landing/lights/light-1-webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/light-1-webp -------------------------------------------------------------------------------- /public/landing/lights/light-2-srcset-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/light-2-srcset-1.png -------------------------------------------------------------------------------- /public/landing/lights/light-2-srcset-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/light-2-srcset-2.png -------------------------------------------------------------------------------- /public/landing/lights/light-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/light-2.webp -------------------------------------------------------------------------------- /public/landing/lights/light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/light.webp -------------------------------------------------------------------------------- /public/landing/lights/typescript-logo-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/lights/typescript-logo-svgrepo-com.svg -------------------------------------------------------------------------------- /public/landing/powered/shape.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/powered/shape.webp -------------------------------------------------------------------------------- /public/landing/powered/shape2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/powered/shape2.svg -------------------------------------------------------------------------------- /public/landing/right-bottom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/right-bottom.webp -------------------------------------------------------------------------------- /public/landing/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/right.png -------------------------------------------------------------------------------- /public/landing/usps/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/usps/1.webp -------------------------------------------------------------------------------- /public/landing/usps/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/usps/2.webp -------------------------------------------------------------------------------- /public/landing/usps/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/landing/usps/3.webp -------------------------------------------------------------------------------- /public/menu/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/menu/blog1.jpg -------------------------------------------------------------------------------- /public/menu/blog2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/menu/blog2.jpeg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(auth)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(auth)/sign-in/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(auth)/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(auth)/sign-up/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/Video/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/Video/Video.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/Video/video.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/Video/video.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/__development/font-showcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/__development/font-showcase.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/content-gradient/content.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/content-gradient/content.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/content-gradient/gradient-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/content-gradient/gradient-content.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/cta-section/CTAsection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/cta-section/CTAsection.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/cta-section/cta-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/cta-section/cta-section.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/effects/home-lights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/effects/home-lights.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/effects/landing-effects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/effects/landing-effects.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/effects/lights.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/faq/faq-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/faq/faq-item.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/faq/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/faq/faq.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/feature/_components/emoji-badges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/feature/_components/emoji-badges.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/feature/feature.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/feature/feature.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/feature/feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/feature/feature.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/footer/footer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/footer/footer.d.ts -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/footer/footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/footer/footer.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/footer/footer.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/hero/ZenWealth/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/hero/ZenWealth/Description.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/hero/ZenWealth/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/hero/ZenWealth/Header.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/hero/ZenWealth/ZenWealth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/hero/ZenWealth/ZenWealth.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/hero/ZenWealth/ZenWealthContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/hero/ZenWealth/ZenWealthContainer.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/hero/hero.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/hero/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/hero/hero.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/horizontal-line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/horizontal-line.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/icons.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/logo-section/logo-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/logo-section/logo-section.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/logo-section/logos.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/logo-section/logos.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/navigation/_components/hero-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/navigation/_components/hero-badge.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/navigation/_components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/navigation/_components/logo.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/navigation/_components/sign-in-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/navigation/_components/sign-in-button.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/navigation/header.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/navigation/header.d.ts -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/navigation/header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/navigation/header.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/navigation/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/navigation/header.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/page-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/page-container.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/powered-by/Marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/powered-by/Marquee.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/powered-by/carousel-brands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/powered-by/carousel-brands.ts -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/powered-by/integration-title.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/powered-by/integration-title.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/powered-by/integration-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/powered-by/integration-title.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/powered-by/powered-by.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/powered-by/powered-by.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/powered-by/powered-by.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/powered-by/powered-by.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/rainbow-line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/rainbow-line.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/text-marquee/MarqueeItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/text-marquee/MarqueeItems.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/text-marquee/usp-marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/text-marquee/usp-marquee.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/_components/text-marquee/video.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/_components/text-marquee/video.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/b/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/b/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/layout.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/app.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/landing.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/modules/horizontal-line.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/modules/horizontal-line.module.css -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/modules/lights.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/modules/lights.module.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/modules/noise.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/modules/noise.module.css -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/modules/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/modules/noise.png -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/theme/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/theme/_fonts.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/theme/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/theme/_typography.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(landing)/styles/utils/utillity-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(landing)/styles/utils/utillity-classes.scss -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/changelog/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/changelog/layout.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/changelog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/changelog/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/design-system/_components/DesignSystemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/design-system/_components/DesignSystemWrapper.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/design-system/_components/DirectionAwareNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/design-system/_components/DirectionAwareNav.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/design-system/card-spotlight/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/design-system/card-spotlight/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/design-system/notice/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/design-system/notice/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/_components/hooks-showcase-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/_components/hooks-showcase-wrapper.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/geolocation/_components/geolocation-showcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/geolocation/_components/geolocation-showcase.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/geolocation/_components/geolocation.loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/geolocation/_components/geolocation.loader.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/geolocation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/geolocation/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/palette/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/hooks-showcase/palette/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/layout.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/(miscellaneous)/old-landing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/(miscellaneous)/old-landing/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/docs/kanban-board/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/docs/kanban-board/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/docs/layout.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/docs/todo/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/docs/todo/page.tsx -------------------------------------------------------------------------------- /src/app/(non-dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/(non-dashboard)/layout.tsx -------------------------------------------------------------------------------- /src/app/api/account/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/api/account/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/logout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/api/auth/logout/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/session/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/api/auth/session/route.ts -------------------------------------------------------------------------------- /src/app/dashboard/activity/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/activity/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/client-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/client-wrapper.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/_components/add-transaction-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/_components/add-transaction-form.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/_components/display-goal.tsxpwd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/finance/_components/expense-breakdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/_components/expense-breakdown.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/_components/finance-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/_components/finance-dashboard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/_components/recent-transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/_components/recent-transactions.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/_components/set-budget-goal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/_components/set-budget-goal.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/_components/set-goal-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/_components/set-goal-form.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/_components/summary-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/_components/summary-card.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/finance/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/finance/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/folders/_components/file-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/folders/_components/file-tree.tsx -------------------------------------------------------------------------------- /src/app/dashboard/folders/_components/folder-context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/folders/_components/folder-context-menu.tsx -------------------------------------------------------------------------------- /src/app/dashboard/folders/_components/new-folder-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/folders/_components/new-folder-form.tsx -------------------------------------------------------------------------------- /src/app/dashboard/folders/_hooks/updated-file-operations-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/folders/_hooks/updated-file-operations-hook.ts -------------------------------------------------------------------------------- /src/app/dashboard/folders/_hooks/use-file-operations.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/folders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/folders/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/ig-follower-parser/_components/csv-ig-parser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/ig-follower-parser/_components/csv-ig-parser.tsx -------------------------------------------------------------------------------- /src/app/dashboard/ig-follower-parser/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/ig-follower-parser/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/layout.client.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/media-recorder/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/media-recorder/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/profile/ProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/profile/ProfileForm.tsx -------------------------------------------------------------------------------- /src/app/dashboard/profile/appearance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/profile/appearance.tsx -------------------------------------------------------------------------------- /src/app/dashboard/profile/get-user-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/profile/get-user-profile.ts -------------------------------------------------------------------------------- /src/app/dashboard/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/profile/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/tasks/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/tasks/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/text-processor/id-username/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/text-processor/id-username/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/text-processor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/dashboard/text-processor/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/Banner.tsx -------------------------------------------------------------------------------- /src/components/DeploymentInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/DeploymentInfo.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/components/_development-utils/auth-status-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_development-utils/auth-status-indicator.tsx -------------------------------------------------------------------------------- /src/components/_development-utils/color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_development-utils/color-picker.tsx -------------------------------------------------------------------------------- /src/components/_development-utils/color-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_development-utils/color-utils.tsx -------------------------------------------------------------------------------- /src/components/_development-utils/tailwind-color-palette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_development-utils/tailwind-color-palette.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/Hero/Gradual-spacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/Hero/Gradual-spacing.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/Hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/Hero/Hero.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/Hero/Maq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/Hero/Maq.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/Hero/Scrolls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/Hero/Scrolls.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/Hero/ShinyLighs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/Hero/ShinyLighs.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/bent-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/bent-grid.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/bento-grid-parent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/bento-grid-parent.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/bento-grid.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/bento-grid.config.ts -------------------------------------------------------------------------------- /src/components/_old-landing/bento-grid/animated-beam-multiple-outputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/bento-grid/animated-beam-multiple-outputs.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/bento-grid/animated-list-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/bento-grid/animated-list-demo.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/bento-grid/bento-grid-parent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/bento-grid/bento-grid-parent.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/bento-grid/bento-grid.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/bento-grid/bento-grid.config.ts -------------------------------------------------------------------------------- /src/components/_old-landing/bento-grid/bento-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/bento-grid/bento-grid.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/footer.tsx -------------------------------------------------------------------------------- /src/components/_old-landing/spotlight-card/spotlight-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/_old-landing/spotlight-card/spotlight-cards.tsx -------------------------------------------------------------------------------- /src/components/aside/route-specific/dashboard-home-aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/route-specific/dashboard-home-aside.tsx -------------------------------------------------------------------------------- /src/components/aside/route-specific/folders-aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/route-specific/folders-aside.tsx -------------------------------------------------------------------------------- /src/components/aside/route-specific/ig-parsed-aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/route-specific/ig-parsed-aside.tsx -------------------------------------------------------------------------------- /src/components/aside/route-specific/notes-aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/route-specific/notes-aside.tsx -------------------------------------------------------------------------------- /src/components/aside/route-specific/settings-aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/route-specific/settings-aside.tsx -------------------------------------------------------------------------------- /src/components/aside/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/sidebar.tsx -------------------------------------------------------------------------------- /src/components/aside/site-settings-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/site-settings-menu.tsx -------------------------------------------------------------------------------- /src/components/aside/skeleton.sidebbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/skeleton.sidebbar.tsx -------------------------------------------------------------------------------- /src/components/aside/skeleton.sub-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/skeleton.sub-sidebar.tsx -------------------------------------------------------------------------------- /src/components/aside/sub-sidebar-shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/sub-sidebar-shell.tsx -------------------------------------------------------------------------------- /src/components/aside/types.sidear.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/aside/types.sidear.d.ts -------------------------------------------------------------------------------- /src/components/atoms/@@Kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/atoms/@@Kbd.tsx -------------------------------------------------------------------------------- /src/components/atoms/Center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/atoms/Center.tsx -------------------------------------------------------------------------------- /src/components/atoms/Flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/atoms/Flex.tsx -------------------------------------------------------------------------------- /src/components/atoms/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/atoms/Spacer.tsx -------------------------------------------------------------------------------- /src/components/atoms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/atoms/index.ts -------------------------------------------------------------------------------- /src/components/atoms/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/atoms/kbd.tsx -------------------------------------------------------------------------------- /src/components/auth/auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/auth.d.ts -------------------------------------------------------------------------------- /src/components/auth/onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/onboarding.tsx -------------------------------------------------------------------------------- /src/components/auth/sign-in-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/sign-in-form.tsx -------------------------------------------------------------------------------- /src/components/auth/sign-out-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/sign-out-button.tsx -------------------------------------------------------------------------------- /src/components/auth/sign-up-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/sign-up-form.tsx -------------------------------------------------------------------------------- /src/components/auth/user-dropdown-menu/user-dropdown-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/user-dropdown-menu/user-dropdown-button.tsx -------------------------------------------------------------------------------- /src/components/auth/user-dropdown-menu/user-dropdown-menu-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/user-dropdown-menu/user-dropdown-menu-item.tsx -------------------------------------------------------------------------------- /src/components/auth/user-dropdown-menu/user-dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/user-dropdown-menu/user-dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/auth/with-user-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/auth/with-user-info.tsx -------------------------------------------------------------------------------- /src/components/base/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/base/Icons.tsx -------------------------------------------------------------------------------- /src/components/base/ThemeWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/base/ThemeWrapper.tsx -------------------------------------------------------------------------------- /src/components/base/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/base/icons.tsx -------------------------------------------------------------------------------- /src/components/base/layout/main-content-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/base/layout/main-content-wrapper.tsx -------------------------------------------------------------------------------- /src/components/base/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/base/logo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/activities.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/activities.d.ts -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/activities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/activities.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/activity-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/activity-card.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/activity-feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/activity-feed.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/activity-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/activity-list.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/animate-height.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/animate-height.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/create-activity-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/create-activity-form.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/create-activity-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/create-activity-popover.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/mock-activity-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/mock-activity-api.ts -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/recent-activities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/recent-activities.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/activity/use-activities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/activity/use-activities.ts -------------------------------------------------------------------------------- /src/components/dashboard/features/intro/current-time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/intro/current-time.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/intro/get-weather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/intro/get-weather.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/tasks/create-task-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/tasks/create-task-popover.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/tasks/task-board.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/tasks/task-board.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/tasks/task-detail-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/tasks/task-detail-popover.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/tasks/task-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/tasks/task-item.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/tasks/task-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/tasks/task-list.tsx -------------------------------------------------------------------------------- /src/components/dashboard/features/tasks/task-management.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/features/tasks/task-management.tsx -------------------------------------------------------------------------------- /src/components/dashboard/layout/top-bar/top-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/layout/top-bar/top-bar.tsx -------------------------------------------------------------------------------- /src/components/dashboard/no-data-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/no-data-state.tsx -------------------------------------------------------------------------------- /src/components/dashboard/onboarding-trigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/onboarding-trigger.tsx -------------------------------------------------------------------------------- /src/components/dashboard/weather-time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/dashboard/weather-time.tsx -------------------------------------------------------------------------------- /src/components/effects/animated-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/animated-beam.tsx -------------------------------------------------------------------------------- /src/components/effects/animated-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/animated-list.tsx -------------------------------------------------------------------------------- /src/components/effects/blur-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/blur-in.tsx -------------------------------------------------------------------------------- /src/components/effects/card-spotlight/card-spotlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/card-spotlight/card-spotlight.tsx -------------------------------------------------------------------------------- /src/components/effects/card-spotlight/use-mouse-position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/card-spotlight/use-mouse-position.ts -------------------------------------------------------------------------------- /src/components/effects/card-spotlight/useMousePosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/card-spotlight/useMousePosition.ts -------------------------------------------------------------------------------- /src/components/effects/confetti.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/confetti.tsx -------------------------------------------------------------------------------- /src/components/effects/empty-state-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/empty-state-loader.tsx -------------------------------------------------------------------------------- /src/components/effects/fade-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/fade-in.tsx -------------------------------------------------------------------------------- /src/components/effects/gitihu-oss/ShinyLighs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/gitihu-oss/ShinyLighs.tsx -------------------------------------------------------------------------------- /src/components/effects/gitihu-oss/github-open-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/gitihu-oss/github-open-source.tsx -------------------------------------------------------------------------------- /src/components/effects/gitihu-oss/oss-chips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/gitihu-oss/oss-chips.tsx -------------------------------------------------------------------------------- /src/components/effects/gitihu-oss/oss-light.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/gitihu-oss/oss-light.tsx -------------------------------------------------------------------------------- /src/components/effects/globe/world-globe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/globe/world-globe.tsx -------------------------------------------------------------------------------- /src/components/effects/glow-text-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/glow-text-effect.tsx -------------------------------------------------------------------------------- /src/components/effects/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/hover-card.tsx -------------------------------------------------------------------------------- /src/components/effects/loaders/heartbeat-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/loaders/heartbeat-loader.tsx -------------------------------------------------------------------------------- /src/components/effects/loaders/loading-dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/loaders/loading-dots.tsx -------------------------------------------------------------------------------- /src/components/effects/loaders/skeleton-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/loaders/skeleton-loader.tsx -------------------------------------------------------------------------------- /src/components/effects/loaders/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/loaders/skeleton.tsx -------------------------------------------------------------------------------- /src/components/effects/number-ticker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/number-ticker.tsx -------------------------------------------------------------------------------- /src/components/effects/onboarding-trigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/onboarding-trigger.tsx -------------------------------------------------------------------------------- /src/components/effects/particles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/particles.tsx -------------------------------------------------------------------------------- /src/components/effects/ripple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/ripple.tsx -------------------------------------------------------------------------------- /src/components/effects/shiny-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/shiny-button.tsx -------------------------------------------------------------------------------- /src/components/effects/show-hide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/show-hide.tsx -------------------------------------------------------------------------------- /src/components/effects/sortable-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/sortable-list.tsx -------------------------------------------------------------------------------- /src/components/effects/spotlight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/effects/spotlight.txt -------------------------------------------------------------------------------- /src/components/elements/crud/add-note-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/crud/add-note-modal.tsx -------------------------------------------------------------------------------- /src/components/elements/crud/confirm-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/crud/confirm-dialog.tsx -------------------------------------------------------------------------------- /src/components/elements/crud/confirmation-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/crud/confirmation-modal.tsx -------------------------------------------------------------------------------- /src/components/elements/crud/create-folder-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/crud/create-folder-modal.tsx -------------------------------------------------------------------------------- /src/components/elements/crud/crud-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/crud/crud-button.tsx -------------------------------------------------------------------------------- /src/components/elements/crud/edit-folder-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/crud/edit-folder-modal.tsx -------------------------------------------------------------------------------- /src/components/elements/custom-dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/custom-dropdown.tsx -------------------------------------------------------------------------------- /src/components/elements/dark-light-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/dark-light-toggle.tsx -------------------------------------------------------------------------------- /src/components/elements/display-code/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/display-code/code-block.tsx -------------------------------------------------------------------------------- /src/components/elements/display-code/code-highlight/CodeContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/display-code/code-highlight/CodeContent.tsx -------------------------------------------------------------------------------- /src/components/elements/display-code/code-highlight/FileHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/display-code/code-highlight/FileHeader.tsx -------------------------------------------------------------------------------- /src/components/elements/display-code/code-highlight/code-highlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/display-code/code-highlight/code-highlight.tsx -------------------------------------------------------------------------------- /src/components/elements/display-code/code-highlight/types.code-highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/display-code/code-highlight/types.code-highlight.ts -------------------------------------------------------------------------------- /src/components/elements/display-code/command-inline-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/display-code/command-inline-code.tsx -------------------------------------------------------------------------------- /src/components/elements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/index.ts -------------------------------------------------------------------------------- /src/components/elements/notice-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/notice-box.tsx -------------------------------------------------------------------------------- /src/components/elements/notification-bar/notification-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/notification-bar/notification-bar.tsx -------------------------------------------------------------------------------- /src/components/elements/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/search.tsx -------------------------------------------------------------------------------- /src/components/elements/tree-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/elements/tree-renderer.tsx -------------------------------------------------------------------------------- /src/components/features/record-peripherals/audio-recorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/features/record-peripherals/audio-recorder.tsx -------------------------------------------------------------------------------- /src/components/features/record-peripherals/display-webcam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/features/record-peripherals/display-webcam.tsx -------------------------------------------------------------------------------- /src/components/features/record-peripherals/peripherals-recorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/features/record-peripherals/peripherals-recorder.tsx -------------------------------------------------------------------------------- /src/components/features/record-peripherals/video-recorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/features/record-peripherals/video-recorder.tsx -------------------------------------------------------------------------------- /src/components/features/record-peripherals/volume-slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/features/record-peripherals/volume-slider.tsx -------------------------------------------------------------------------------- /src/components/features/text-processor/text-processor copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/features/text-processor/text-processor copy.tsx -------------------------------------------------------------------------------- /src/components/features/text-processor/text-processor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/features/text-processor/text-processor.tsx -------------------------------------------------------------------------------- /src/components/rich-text-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/rich-text-editor.tsx -------------------------------------------------------------------------------- /src/components/sidebar-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/sidebar-items.tsx -------------------------------------------------------------------------------- /src/components/tiptap-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/tiptap-editor.tsx -------------------------------------------------------------------------------- /src/components/ui/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/animations.ts -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/cals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/cals.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/color-picker.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/icon.tsx -------------------------------------------------------------------------------- /src/components/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/index.ts -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/marquee.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/notice.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/popup.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/simple-checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/simple-checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/spinner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/useFormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/components/ui/useFormField.tsx -------------------------------------------------------------------------------- /src/config/menu-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/config/menu-config.ts -------------------------------------------------------------------------------- /src/config/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/config/nav.ts -------------------------------------------------------------------------------- /src/config/site-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/config/site-config.ts -------------------------------------------------------------------------------- /src/core/config/fonts/font.bricolage_grotesque.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/fonts/font.bricolage_grotesque.ts -------------------------------------------------------------------------------- /src/core/config/fonts/font.pt_mono.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/fonts/font.pt_mono.ts -------------------------------------------------------------------------------- /src/core/config/fonts/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/fonts/fonts.ts -------------------------------------------------------------------------------- /src/core/config/fonts/geist/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/fonts/geist/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/core/config/fonts/geist/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/fonts/geist/GeistVF.woff -------------------------------------------------------------------------------- /src/core/config/fonts/geist/font.geist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/fonts/geist/font.geist.ts -------------------------------------------------------------------------------- /src/core/config/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/locales/en.ts -------------------------------------------------------------------------------- /src/core/config/locales/locales.ts: -------------------------------------------------------------------------------- 1 | export * as en from './en' 2 | -------------------------------------------------------------------------------- /src/core/config/menu-items/dashboard-navigation-menu-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/menu-items/dashboard-navigation-menu-items.ts -------------------------------------------------------------------------------- /src/core/config/menu-items/design-system-menu.items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/menu-items/design-system-menu.items.ts -------------------------------------------------------------------------------- /src/core/config/menu-items/dropdown-menu.items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/menu-items/dropdown-menu.items.ts -------------------------------------------------------------------------------- /src/core/config/menu-items/sidebar-menu-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/menu-items/sidebar-menu-items.ts -------------------------------------------------------------------------------- /src/core/config/metadata/dashboard.metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/metadata/dashboard.metadata.ts -------------------------------------------------------------------------------- /src/core/config/metadata/metadata.root-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/metadata/metadata.root-layout.ts -------------------------------------------------------------------------------- /src/core/config/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/nav.ts -------------------------------------------------------------------------------- /src/core/config/site-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/config/site-config.ts -------------------------------------------------------------------------------- /src/core/constants/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/constants/animations.ts -------------------------------------------------------------------------------- /src/core/constants/cn-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/constants/cn-tw.ts -------------------------------------------------------------------------------- /src/core/constants/generate-uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/constants/generate-uuid.ts -------------------------------------------------------------------------------- /src/core/hooks/_hook_helpers/use-event-callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/_hook_helpers/use-event-callback.ts -------------------------------------------------------------------------------- /src/core/hooks/_hook_helpers/use-event-listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/_hook_helpers/use-event-listener.ts -------------------------------------------------------------------------------- /src/core/hooks/_hook_helpers/use-isomorphic-layout-effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/_hook_helpers/use-isomorphic-layout-effect.ts -------------------------------------------------------------------------------- /src/core/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/index.ts -------------------------------------------------------------------------------- /src/core/hooks/use-copy-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/use-copy-clipboard.ts -------------------------------------------------------------------------------- /src/core/hooks/use-dev-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/use-dev-mode.ts -------------------------------------------------------------------------------- /src/core/hooks/use-geo-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/use-geo-location.ts -------------------------------------------------------------------------------- /src/core/hooks/use-keyboard-shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/use-keyboard-shortcuts.ts -------------------------------------------------------------------------------- /src/core/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /src/core/hooks/use-mouse-hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/use-mouse-hover.ts -------------------------------------------------------------------------------- /src/core/hooks/use-skeleton-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/use-skeleton-loader.ts -------------------------------------------------------------------------------- /src/core/hooks/use-user-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/hooks/use-user-info.ts -------------------------------------------------------------------------------- /src/core/models/activities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/models/activities.ts -------------------------------------------------------------------------------- /src/core/models/folders.z.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/models/folders.z.ts -------------------------------------------------------------------------------- /src/core/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './folders.z' 2 | -------------------------------------------------------------------------------- /src/core/scripts/fix-imports/optimize-iu-imports.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/scripts/fix-imports/optimize-iu-imports.mdx -------------------------------------------------------------------------------- /src/core/scripts/fix-imports/optimize-ui-imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/scripts/fix-imports/optimize-ui-imports.py -------------------------------------------------------------------------------- /src/core/server/actions/activities/create-activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/activities/create-activity.ts -------------------------------------------------------------------------------- /src/core/server/actions/activity-log/fetch-activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/activity-log/fetch-activity.ts -------------------------------------------------------------------------------- /src/core/server/actions/activity-log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/activity-log/index.ts -------------------------------------------------------------------------------- /src/core/server/actions/activity-log/log-activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/activity-log/log-activity.ts -------------------------------------------------------------------------------- /src/core/server/actions/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/activity.ts -------------------------------------------------------------------------------- /src/core/server/actions/finance/budget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/finance/budget.ts -------------------------------------------------------------------------------- /src/core/server/actions/finance/goals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/finance/goals.ts -------------------------------------------------------------------------------- /src/core/server/actions/finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/finance/index.ts -------------------------------------------------------------------------------- /src/core/server/actions/finance/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/finance/transactions.ts -------------------------------------------------------------------------------- /src/core/server/actions/folders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/folders/index.ts -------------------------------------------------------------------------------- /src/core/server/actions/get-visitory-city.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/get-visitory-city.ts -------------------------------------------------------------------------------- /src/core/server/actions/github/fetch-github-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/github/fetch-github-stats.ts -------------------------------------------------------------------------------- /src/core/server/actions/github/index.ts: -------------------------------------------------------------------------------- 1 | export * from './fetch-github-stats' 2 | -------------------------------------------------------------------------------- /src/core/server/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/index.ts -------------------------------------------------------------------------------- /src/core/server/actions/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/notes.ts -------------------------------------------------------------------------------- /src/core/server/actions/save-parsed-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/save-parsed-output.ts -------------------------------------------------------------------------------- /src/core/server/actions/save-processed-text/save-processed-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/save-processed-text/save-processed-text.ts -------------------------------------------------------------------------------- /src/core/server/actions/tasks/add-sub-task.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/add-task-label.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/create-task.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/get-label.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/get-task.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/tasks/index.tsx -------------------------------------------------------------------------------- /src/core/server/actions/tasks/remove-task-label.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/update-sub-task.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/update-task-due-date.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/update-task-priority.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/tasks/update-task-status.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/server/actions/update-user-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/update-user-profile.ts -------------------------------------------------------------------------------- /src/core/server/actions/user/action.sign-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/user/action.sign-in.ts -------------------------------------------------------------------------------- /src/core/server/actions/user/action.sign-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/user/action.sign-out.ts -------------------------------------------------------------------------------- /src/core/server/actions/user/action.sign-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/user/action.sign-up.ts -------------------------------------------------------------------------------- /src/core/server/actions/user/action.update-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/user/action.update-user.ts -------------------------------------------------------------------------------- /src/core/server/actions/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/user/index.ts -------------------------------------------------------------------------------- /src/core/server/actions/user/user-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/actions/user/user-profile.ts -------------------------------------------------------------------------------- /src/core/server/auth/client-auth-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/auth/client-auth-utils.ts -------------------------------------------------------------------------------- /src/core/server/auth/lucia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/auth/lucia.ts -------------------------------------------------------------------------------- /src/core/server/auth/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/auth/utils.ts -------------------------------------------------------------------------------- /src/core/server/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/index.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/activity.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/auth.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/finance/budget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/finance/budget.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/finance/goals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/finance/goals.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/finance/index.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/finance/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/finance/transactions.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/folders.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/index.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/notes.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/parsed-ig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/parsed-ig.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/processed-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/processed-text.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/tasks/index.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/tasks/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/tasks/label.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/tasks/task-label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/tasks/task-label.ts -------------------------------------------------------------------------------- /src/core/server/db/schema/tasks/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/server/db/schema/tasks/task.ts -------------------------------------------------------------------------------- /src/core/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/index.ts -------------------------------------------------------------------------------- /src/core/stores/store.dismiss-notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.dismiss-notification.ts -------------------------------------------------------------------------------- /src/core/stores/store.file-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.file-tree.ts -------------------------------------------------------------------------------- /src/core/stores/store.main.sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.main.sidebar.ts -------------------------------------------------------------------------------- /src/core/stores/store.notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.notes.ts -------------------------------------------------------------------------------- /src/core/stores/store.parsed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.parsed.ts -------------------------------------------------------------------------------- /src/core/stores/store.site-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.site-settings.ts -------------------------------------------------------------------------------- /src/core/stores/store.sub-sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.sub-sidebar.ts -------------------------------------------------------------------------------- /src/core/stores/store.theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.theme.ts -------------------------------------------------------------------------------- /src/core/stores/store.toasts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/core/stores/store.toasts.ts -------------------------------------------------------------------------------- /src/lib/actions/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/lib/actions/folders.ts -------------------------------------------------------------------------------- /src/lib/actions/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/lib/actions/notes.ts -------------------------------------------------------------------------------- /src/lib/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/lib/env.mjs -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/components/_hover-efffect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/components/_hover-efffect.scss -------------------------------------------------------------------------------- /src/styles/components/_mouse-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/components/_mouse-grid.scss -------------------------------------------------------------------------------- /src/styles/components/_scrollar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/components/_scrollar.scss -------------------------------------------------------------------------------- /src/styles/core/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/core/_typography.scss -------------------------------------------------------------------------------- /src/styles/themes/_default-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/themes/_default-theme.scss -------------------------------------------------------------------------------- /src/styles/themes/_theme-selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/themes/_theme-selector.scss -------------------------------------------------------------------------------- /src/styles/utillities/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/utillities/_animations.scss -------------------------------------------------------------------------------- /src/styles/utillities/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/utillities/_border.scss -------------------------------------------------------------------------------- /src/styles/utillities/_utillities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/styles/utillities/_utillities.scss -------------------------------------------------------------------------------- /src/types/canvas-confetti.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/types/canvas-confetti.d.ts -------------------------------------------------------------------------------- /src/types/design-system.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/types/design-system.d.ts -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/tasks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/types/tasks.d.ts -------------------------------------------------------------------------------- /src/types/tree-item.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/types/tree-item.types.d.ts -------------------------------------------------------------------------------- /src/types/types.folder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/types/types.folder.d.ts -------------------------------------------------------------------------------- /src/types/types.users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/src/types/types.users.d.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcostoeten/nextjs-lucia-neon-postgresql-drizzle-dashboard/HEAD/tsconfig.json --------------------------------------------------------------------------------