├── .commitlintrc.json ├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── take-issue.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .nvmrc ├── .prettierignore ├── LICENSE.md ├── README.md ├── apps ├── api │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── env.ts │ │ ├── index.ts │ │ ├── lib │ │ │ ├── db.ts │ │ │ ├── generateApiKey.ts │ │ │ └── parsePrismaError.ts │ │ ├── notifications │ │ │ └── discord │ │ │ │ └── sendDiscordNotification.ts │ │ ├── routes │ │ │ ├── apiKeyMiddleware.ts │ │ │ ├── channels.ts │ │ │ ├── events.ts │ │ │ ├── projects.ts │ │ │ └── users.ts │ │ ├── validators │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── zod │ │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml └── www │ ├── contentlayer.config.js │ ├── eslint.config.js │ ├── next.config.js │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── hero-dark.png │ ├── hero-dark2.png │ ├── hero-light.png │ ├── hero-light2.png │ ├── images │ │ ├── avatars │ │ │ └── shadcn.png │ │ ├── blog │ │ │ ├── blog-post-1.jpg │ │ │ ├── blog-post-2.jpg │ │ │ ├── blog-post-3.jpg │ │ │ └── blog-post-4.jpg │ │ ├── download.svg │ │ └── hero.png │ ├── og.jpg │ ├── og2.jpg │ ├── site.webmanifest │ └── vercel.svg │ ├── src │ ├── actions │ │ ├── change-customer-details.ts │ │ ├── change-notification-settings.ts │ │ ├── create-channel.ts │ │ ├── create-event.ts │ │ ├── create-project-and-channel.ts │ │ ├── delete-customer.ts │ │ ├── delete-event.ts │ │ ├── generate-api-key.ts │ │ ├── generate-description.ts │ │ ├── generate-options.ts │ │ ├── generate-user-stripe.ts │ │ ├── get-channel-details.ts │ │ ├── get-channels.ts │ │ ├── get-credits.ts │ │ ├── get-customer-details.ts │ │ ├── get-customers-all.ts │ │ ├── get-metrics-user.ts │ │ ├── get-notification-settings.ts │ │ ├── get-user-details.ts │ │ ├── select-option.ts │ │ ├── send-onboarding-email.ts │ │ ├── stats │ │ │ ├── get-analytics-stats.ts │ │ │ ├── get-events-stats.ts │ │ │ └── get-users-stats.ts │ │ ├── testwebhook.ts │ │ ├── update-language.tsx │ │ ├── update-property-description.tsx │ │ ├── update-property-form.tsx │ │ ├── update-property-status.ts │ │ ├── update-user-name.ts │ │ └── upload-images.ts │ ├── app │ │ ├── (auth) │ │ │ ├── layout.tsx │ │ │ ├── login │ │ │ │ └── page.tsx │ │ │ └── register │ │ │ │ └── page.tsx │ │ ├── (dashboard) │ │ │ └── dashboard │ │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ │ ├── analytics │ │ │ │ └── page.tsx │ │ │ │ ├── billing │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── channels │ │ │ │ └── [id] │ │ │ │ │ └── page.tsx │ │ │ │ ├── dev │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── loading.tsx │ │ │ │ ├── notifications │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── settings │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ │ └── users │ │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ ├── (docs) │ │ │ ├── docs │ │ │ │ ├── [[...slug]] │ │ │ │ │ └── page.tsx │ │ │ │ └── layout.tsx │ │ │ ├── guides │ │ │ │ ├── [...slug] │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ └── layout.tsx │ │ ├── (marketing) │ │ │ ├── [...slug] │ │ │ │ └── page.tsx │ │ │ ├── blog │ │ │ │ ├── [...slug] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── error.tsx │ │ │ ├── layout.tsx │ │ │ ├── open │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── pricing │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ ├── (onboarding) │ │ │ └── onboarding │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ ├── (property) │ │ │ └── property │ │ │ │ └── [id] │ │ │ │ ├── layout.tsx │ │ │ │ ├── loading.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── pictures │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── report │ │ │ │ └── page.tsx │ │ │ │ └── settings │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ ├── api │ │ │ ├── ai │ │ │ │ ├── analyzeImage │ │ │ │ │ └── route.ts │ │ │ │ └── generateDescription │ │ │ │ │ └── route.ts │ │ │ ├── auth │ │ │ │ └── [...nextauth] │ │ │ │ │ └── route.ts │ │ │ ├── og │ │ │ │ └── route.tsx │ │ │ ├── property │ │ │ │ └── addproperty │ │ │ │ │ └── route.tsx │ │ │ └── webhooks │ │ │ │ └── stripe │ │ │ │ └── route.ts │ │ ├── layout.tsx │ │ ├── robots.ts │ │ └── sitemap.ts │ ├── assets │ │ └── fonts │ │ │ ├── CalSans-SemiBold.ttf │ │ │ ├── CalSans-SemiBold.woff2 │ │ │ ├── Inter-Bold.ttf │ │ │ ├── Inter-Regular.ttf │ │ │ └── index.ts │ ├── components │ │ ├── UserBadge.tsx │ │ ├── analytics.tsx │ │ ├── analytics │ │ │ └── CardSection.tsx │ │ ├── animate-beam.tsx │ │ ├── billing-info.tsx │ │ ├── blog-posts.tsx │ │ ├── buttons │ │ │ ├── AddApiKeyButton.tsx │ │ │ ├── AddChannelButton.tsx │ │ │ ├── AddProjectButton.tsx │ │ │ ├── AddPropertyButton.tsx │ │ │ ├── CreatEventButton.tsx │ │ │ ├── DocsButton.tsx │ │ │ ├── GenerateDescriptionButton2.tsx │ │ │ ├── GenerateDescriptionsButton.tsx │ │ │ ├── GetStartedButton.tsx │ │ │ ├── LanguageButton.tsx │ │ │ ├── StartOnbordaButton.tsx │ │ │ ├── SubmitProperty.tsx │ │ │ └── ViewDetailsButton.tsx │ │ ├── channels │ │ │ ├── ChannelCard.tsx │ │ │ └── ChannelCard2.tsx │ │ ├── content │ │ │ ├── mdx-card.tsx │ │ │ ├── mdx-components.tsx │ │ │ └── templete-blog │ │ │ │ ├── deploying-next-apps.mdx │ │ │ │ ├── dynamic-routing-static-regeneration copy.mdx │ │ │ │ ├── preview-mode-headless-cms.mdx │ │ │ │ └── server-client-components.mdx │ │ ├── dashboard │ │ │ ├── EventsDashboard.tsx │ │ │ ├── EventsDashboardComponents │ │ │ │ ├── EventDashboardDetailsSheet.tsx │ │ │ │ ├── EventsDashboardCards.tsx │ │ │ │ ├── EventsDashboardDetails.tsx │ │ │ │ └── EventsDashboardTable.tsx │ │ │ ├── beam-section.tsx │ │ │ ├── bento-section.tsx │ │ │ ├── businessline.tsx │ │ │ ├── calltoaction.tsx │ │ │ ├── charts │ │ │ │ ├── AlertsOverviewChart.tsx │ │ │ │ ├── EventsTrendOverTime.tsx │ │ │ │ ├── SalesFunnelChart.tsx │ │ │ │ └── UserGrowthChart.tsx │ │ │ ├── descriptiondisplay.tsx │ │ │ ├── featuresection1.tsx │ │ │ ├── feautressection.tsx │ │ │ ├── generatedtext.tsx │ │ │ ├── header.tsx │ │ │ ├── herosection.tsx │ │ │ ├── herosection2.tsx │ │ │ ├── shell.tsx │ │ │ ├── test.tsx │ │ │ └── updatepropertyform2.tsx │ │ ├── docs │ │ │ ├── page-header.tsx │ │ │ ├── pager.tsx │ │ │ ├── search.tsx │ │ │ └── sidebar-nav.tsx │ │ ├── forms │ │ │ ├── billing-form-button.tsx │ │ │ ├── language-form2.tsx │ │ │ ├── select-input-form.tsx │ │ │ ├── update-property-form.tsx │ │ │ ├── user-auth-form.tsx │ │ │ └── user-name-form.tsx │ │ ├── landing │ │ │ ├── Integrations-section-landing.tsx │ │ │ ├── bottom-section-landing.tsx │ │ │ ├── cta-section.tsx │ │ │ ├── events-section-landing.tsx │ │ │ ├── hero-section-new.tsx │ │ │ └── hero-section.tsx │ │ ├── layout │ │ │ ├── language-modal.tsx │ │ │ ├── main-nav.tsx │ │ │ ├── mobile-nav.tsx │ │ │ ├── mode-toggle.tsx │ │ │ ├── nav.tsx │ │ │ ├── navbar.tsx │ │ │ ├── sign-in-modal.tsx │ │ │ ├── site-footer.tsx │ │ │ └── user-account-nav.tsx │ │ ├── modal-provider.tsx │ │ ├── notifications │ │ │ └── NotificationAlert.tsx │ │ ├── onboarding │ │ │ ├── GenerateApiKey.tsx │ │ │ ├── channel-form.tsx │ │ │ ├── event-form.tsx │ │ │ └── explore-more.tsx │ │ ├── open-page │ │ │ ├── Open.tsx │ │ │ ├── OpenCardFunding.tsx │ │ │ ├── OpenCardFundingChart.tsx │ │ │ ├── OpenCardFundingDiagram.tsx │ │ │ ├── OpenCardNewUsers.tsx │ │ │ ├── OpenCardUsers.tsx │ │ │ ├── OpenCardsSection.tsx │ │ │ ├── OpenMiddleSection.tsx │ │ │ ├── OpenSalaryTable.tsx │ │ │ ├── OpenStartupSection.tsx │ │ │ ├── OpenTableTeam.tsx │ │ │ ├── OpenUsersDiagram.tsx │ │ │ ├── OpenUsersFunding.tsx │ │ │ └── OpenUsersText.tsx │ │ ├── pricing-cards.tsx │ │ ├── pricing-faq.tsx │ │ ├── properties │ │ │ ├── NoPhotoPlaceholder copy.tsx │ │ │ ├── NoSummaryPlaceholder.tsx │ │ │ ├── NoTextPlaceholder.tsx │ │ │ ├── Propertiestable.tsx │ │ │ ├── PropertyImageWithOptions.tsx │ │ │ └── PropertyPicture.tsx │ │ ├── providers.tsx │ │ ├── shared │ │ │ ├── callout.tsx │ │ │ ├── card-skeleton.tsx │ │ │ ├── empty-placeholder.tsx │ │ │ ├── icons.tsx │ │ │ ├── modal.tsx │ │ │ ├── toc.tsx │ │ │ └── user-avatar.tsx │ │ ├── table │ │ │ └── dashboard │ │ │ │ ├── columns.tsx │ │ │ │ ├── data-table-faceted-filter.tsx │ │ │ │ ├── data-table-toolbar.tsx │ │ │ │ ├── data-table-view-options.tsx │ │ │ │ ├── data-table.tsx │ │ │ │ └── propertystatus.tsx │ │ ├── tailwind-indicator.tsx │ │ ├── ui │ │ │ ├── animated-beam-multiple-outputs.tsx │ │ │ ├── animated-beam.tsx │ │ │ ├── animated-list-landing.tsx │ │ │ ├── animated-list.tsx │ │ │ ├── bento-grid.tsx │ │ │ ├── bento-section-landing.tsx │ │ │ ├── border-beam.tsx │ │ │ ├── confetti.tsx │ │ │ ├── feature-card.tsx │ │ │ ├── marquee.tsx │ │ │ ├── particles.tsx │ │ │ ├── sphere-mask.tsx │ │ │ └── text-shimmer.tsx │ │ └── users │ │ │ ├── AllUsersCard.tsx │ │ │ ├── DeleteDialogCustomer.tsx │ │ │ ├── EditCustomerSheet.tsx │ │ │ ├── EmailButton.tsx │ │ │ ├── UserCard.tsx │ │ │ ├── UserCardsSection.tsx │ │ │ ├── UserChartActivity.tsx │ │ │ ├── UserEmailCard.tsx │ │ │ ├── UserGridActivity.tsx │ │ │ ├── UserMainSection.tsx │ │ │ ├── UserPowerCard.tsx │ │ │ ├── UsersCard.tsx │ │ │ └── UsersDashboardTable.tsx │ ├── config │ │ ├── dashboard.ts │ │ ├── docs.ts │ │ ├── marketing.ts │ │ ├── property.ts │ │ ├── site.ts │ │ └── subscriptions.ts │ ├── content │ │ ├── authors │ │ │ ├── codehagen.mdx │ │ │ └── shadcn.mdx │ │ ├── blog │ │ │ ├── how-propwrite-makes-listings-irresistible.mdx │ │ │ ├── propwrite_aI_real_estate_blog_post.mdx │ │ │ └── welcome-to-propwrite.mdx │ │ ├── docs │ │ │ ├── documentation │ │ │ │ ├── code-blocks.mdx │ │ │ │ ├── components.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── style-guide.mdx │ │ │ ├── in-progress.mdx │ │ │ └── index.mdx │ │ ├── guides │ │ │ ├── build-blog-using-contentlayer-mdx.mdx │ │ │ └── using-next-auth-next-13.mdx │ │ └── pages │ │ │ ├── privacy.mdx │ │ │ └── terms.mdx │ ├── emails │ │ ├── components │ │ │ └── footer.tsx │ │ ├── magic-link-email.tsx │ │ └── welcome-email.tsx │ ├── env.ts │ ├── get-user-channels.ts │ ├── hooks │ │ ├── use-intersection-observer.ts │ │ ├── use-language-modal.ts │ │ ├── use-local-storage.ts │ │ ├── use-lock-body.ts │ │ ├── use-media-query.ts │ │ ├── use-mounted.ts │ │ ├── use-scroll.ts │ │ └── use-signin-modal.ts │ ├── lib │ │ ├── auth.ts │ │ ├── crypto.ts │ │ ├── db.ts │ │ ├── email.ts │ │ ├── exceptions.ts │ │ ├── pixel-events.tsx │ │ ├── session.ts │ │ ├── stripe.ts │ │ ├── subscription.ts │ │ ├── toc.ts │ │ ├── utils.ts │ │ └── validations │ │ │ ├── auth.ts │ │ │ ├── og.ts │ │ │ └── user.ts │ ├── middleware.ts │ ├── styles │ │ ├── globals.css │ │ └── mdx.css │ └── types │ │ ├── index.d.ts │ │ ├── next-auth.d.ts │ │ └── types.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── package.json ├── packages ├── db │ ├── eslint.config.js │ ├── index.ts │ ├── package.json │ ├── prisma │ │ ├── migrations │ │ │ └── 0_init │ │ │ │ └── migration.sql │ │ └── schema.prisma │ └── tsconfig.json └── ui │ ├── eslint.config.js │ ├── package.json │ ├── src │ ├── components │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── stepper │ │ │ ├── context.tsx │ │ │ ├── horizontal-step.tsx │ │ │ ├── index.tsx │ │ │ ├── step-button-container.tsx │ │ │ ├── step-icon.tsx │ │ │ ├── step-label.tsx │ │ │ ├── step.tsx │ │ │ ├── types.ts │ │ │ ├── use-media-query.tsx │ │ │ ├── use-stepper.tsx │ │ │ └── vertical-step.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── themes.ts │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tooling ├── eslint │ ├── base.js │ ├── nextjs.js │ ├── package.json │ ├── react.js │ ├── tsconfig.json │ └── types.d.ts ├── prettier │ ├── index.js │ ├── package.json │ └── tsconfig.json ├── tailwind │ ├── eslint.config.js │ ├── index.ts │ ├── package.json │ ├── tailwind.d.ts │ └── tsconfig.json └── typescript │ ├── base.json │ ├── internal-package.json │ └── package.json └── turbo.json /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/take-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.github/workflows/take-issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.10.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .next 4 | build 5 | .contentlayer -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/README.md -------------------------------------------------------------------------------- /apps/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/.gitignore -------------------------------------------------------------------------------- /apps/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/README.md -------------------------------------------------------------------------------- /apps/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/package.json -------------------------------------------------------------------------------- /apps/api/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/env.ts -------------------------------------------------------------------------------- /apps/api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/index.ts -------------------------------------------------------------------------------- /apps/api/src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/lib/db.ts -------------------------------------------------------------------------------- /apps/api/src/lib/generateApiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/lib/generateApiKey.ts -------------------------------------------------------------------------------- /apps/api/src/lib/parsePrismaError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/lib/parsePrismaError.ts -------------------------------------------------------------------------------- /apps/api/src/notifications/discord/sendDiscordNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/notifications/discord/sendDiscordNotification.ts -------------------------------------------------------------------------------- /apps/api/src/routes/apiKeyMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/routes/apiKeyMiddleware.ts -------------------------------------------------------------------------------- /apps/api/src/routes/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/routes/channels.ts -------------------------------------------------------------------------------- /apps/api/src/routes/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/routes/events.ts -------------------------------------------------------------------------------- /apps/api/src/routes/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/routes/projects.ts -------------------------------------------------------------------------------- /apps/api/src/routes/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/routes/users.ts -------------------------------------------------------------------------------- /apps/api/src/validators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/validators/index.ts -------------------------------------------------------------------------------- /apps/api/src/validators/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/validators/types.ts -------------------------------------------------------------------------------- /apps/api/src/zod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/src/zod/index.ts -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/api/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/api/wrangler.toml -------------------------------------------------------------------------------- /apps/www/contentlayer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/contentlayer.config.js -------------------------------------------------------------------------------- /apps/www/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/eslint.config.js -------------------------------------------------------------------------------- /apps/www/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/next.config.js -------------------------------------------------------------------------------- /apps/www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/package.json -------------------------------------------------------------------------------- /apps/www/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/postcss.config.cjs -------------------------------------------------------------------------------- /apps/www/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/www/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /apps/www/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/www/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/www/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/favicon-32x32.png -------------------------------------------------------------------------------- /apps/www/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/favicon.ico -------------------------------------------------------------------------------- /apps/www/public/hero-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/hero-dark.png -------------------------------------------------------------------------------- /apps/www/public/hero-dark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/hero-dark2.png -------------------------------------------------------------------------------- /apps/www/public/hero-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/hero-light.png -------------------------------------------------------------------------------- /apps/www/public/hero-light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/hero-light2.png -------------------------------------------------------------------------------- /apps/www/public/images/avatars/shadcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/images/avatars/shadcn.png -------------------------------------------------------------------------------- /apps/www/public/images/blog/blog-post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/images/blog/blog-post-1.jpg -------------------------------------------------------------------------------- /apps/www/public/images/blog/blog-post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/images/blog/blog-post-2.jpg -------------------------------------------------------------------------------- /apps/www/public/images/blog/blog-post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/images/blog/blog-post-3.jpg -------------------------------------------------------------------------------- /apps/www/public/images/blog/blog-post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/images/blog/blog-post-4.jpg -------------------------------------------------------------------------------- /apps/www/public/images/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/images/download.svg -------------------------------------------------------------------------------- /apps/www/public/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/images/hero.png -------------------------------------------------------------------------------- /apps/www/public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/og.jpg -------------------------------------------------------------------------------- /apps/www/public/og2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/og2.jpg -------------------------------------------------------------------------------- /apps/www/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/site.webmanifest -------------------------------------------------------------------------------- /apps/www/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/public/vercel.svg -------------------------------------------------------------------------------- /apps/www/src/actions/change-customer-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/change-customer-details.ts -------------------------------------------------------------------------------- /apps/www/src/actions/change-notification-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/change-notification-settings.ts -------------------------------------------------------------------------------- /apps/www/src/actions/create-channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/create-channel.ts -------------------------------------------------------------------------------- /apps/www/src/actions/create-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/create-event.ts -------------------------------------------------------------------------------- /apps/www/src/actions/create-project-and-channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/create-project-and-channel.ts -------------------------------------------------------------------------------- /apps/www/src/actions/delete-customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/delete-customer.ts -------------------------------------------------------------------------------- /apps/www/src/actions/delete-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/delete-event.ts -------------------------------------------------------------------------------- /apps/www/src/actions/generate-api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/generate-api-key.ts -------------------------------------------------------------------------------- /apps/www/src/actions/generate-description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/generate-description.ts -------------------------------------------------------------------------------- /apps/www/src/actions/generate-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/generate-options.ts -------------------------------------------------------------------------------- /apps/www/src/actions/generate-user-stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/generate-user-stripe.ts -------------------------------------------------------------------------------- /apps/www/src/actions/get-channel-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/get-channel-details.ts -------------------------------------------------------------------------------- /apps/www/src/actions/get-channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/get-channels.ts -------------------------------------------------------------------------------- /apps/www/src/actions/get-credits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/get-credits.ts -------------------------------------------------------------------------------- /apps/www/src/actions/get-customer-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/get-customer-details.ts -------------------------------------------------------------------------------- /apps/www/src/actions/get-customers-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/get-customers-all.ts -------------------------------------------------------------------------------- /apps/www/src/actions/get-metrics-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/get-metrics-user.ts -------------------------------------------------------------------------------- /apps/www/src/actions/get-notification-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/get-notification-settings.ts -------------------------------------------------------------------------------- /apps/www/src/actions/get-user-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/get-user-details.ts -------------------------------------------------------------------------------- /apps/www/src/actions/select-option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/select-option.ts -------------------------------------------------------------------------------- /apps/www/src/actions/send-onboarding-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/send-onboarding-email.ts -------------------------------------------------------------------------------- /apps/www/src/actions/stats/get-analytics-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/stats/get-analytics-stats.ts -------------------------------------------------------------------------------- /apps/www/src/actions/stats/get-events-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/stats/get-events-stats.ts -------------------------------------------------------------------------------- /apps/www/src/actions/stats/get-users-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/stats/get-users-stats.ts -------------------------------------------------------------------------------- /apps/www/src/actions/testwebhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/testwebhook.ts -------------------------------------------------------------------------------- /apps/www/src/actions/update-language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/update-language.tsx -------------------------------------------------------------------------------- /apps/www/src/actions/update-property-description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/update-property-description.tsx -------------------------------------------------------------------------------- /apps/www/src/actions/update-property-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/update-property-form.tsx -------------------------------------------------------------------------------- /apps/www/src/actions/update-property-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/update-property-status.ts -------------------------------------------------------------------------------- /apps/www/src/actions/update-user-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/update-user-name.ts -------------------------------------------------------------------------------- /apps/www/src/actions/upload-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/actions/upload-images.ts -------------------------------------------------------------------------------- /apps/www/src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(auth)/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(auth)/register/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/[id]/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/analytics/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/billing/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/billing/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/billing/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/channels/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/channels/[id]/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/dev/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/dev/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/notifications/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/notifications/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/notifications/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/notifications/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/settings/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/users/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/users/[id]/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(dashboard)/dashboard/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(dashboard)/dashboard/users/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(docs)/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(docs)/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(docs)/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(docs)/docs/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(docs)/guides/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(docs)/guides/[...slug]/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(docs)/guides/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(docs)/guides/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(docs)/guides/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(docs)/guides/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(docs)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(docs)/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/[...slug]/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/blog/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/blog/[...slug]/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/blog/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/error.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/open/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/open/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/open/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/open/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/pricing/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/pricing/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(marketing)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(marketing)/pricing/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(onboarding)/onboarding/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(onboarding)/onboarding/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(onboarding)/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(onboarding)/onboarding/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(property)/property/[id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(property)/property/[id]/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(property)/property/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(property)/property/[id]/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(property)/property/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(property)/property/[id]/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(property)/property/[id]/pictures/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(property)/property/[id]/pictures/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(property)/property/[id]/pictures/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(property)/property/[id]/pictures/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(property)/property/[id]/report/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(property)/property/[id]/report/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(property)/property/[id]/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(property)/property/[id]/settings/loading.tsx -------------------------------------------------------------------------------- /apps/www/src/app/(property)/property/[id]/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/(property)/property/[id]/settings/page.tsx -------------------------------------------------------------------------------- /apps/www/src/app/api/ai/analyzeImage/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/api/ai/analyzeImage/route.ts -------------------------------------------------------------------------------- /apps/www/src/app/api/ai/generateDescription/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/api/ai/generateDescription/route.ts -------------------------------------------------------------------------------- /apps/www/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /apps/www/src/app/api/og/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/api/og/route.tsx -------------------------------------------------------------------------------- /apps/www/src/app/api/property/addproperty/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/api/property/addproperty/route.tsx -------------------------------------------------------------------------------- /apps/www/src/app/api/webhooks/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/api/webhooks/stripe/route.ts -------------------------------------------------------------------------------- /apps/www/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/www/src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/robots.ts -------------------------------------------------------------------------------- /apps/www/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/www/src/assets/fonts/CalSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/assets/fonts/CalSans-SemiBold.ttf -------------------------------------------------------------------------------- /apps/www/src/assets/fonts/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/assets/fonts/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /apps/www/src/assets/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/assets/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /apps/www/src/assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /apps/www/src/assets/fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/assets/fonts/index.ts -------------------------------------------------------------------------------- /apps/www/src/components/UserBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/UserBadge.tsx -------------------------------------------------------------------------------- /apps/www/src/components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/analytics.tsx -------------------------------------------------------------------------------- /apps/www/src/components/analytics/CardSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/analytics/CardSection.tsx -------------------------------------------------------------------------------- /apps/www/src/components/animate-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/animate-beam.tsx -------------------------------------------------------------------------------- /apps/www/src/components/billing-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/billing-info.tsx -------------------------------------------------------------------------------- /apps/www/src/components/blog-posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/blog-posts.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/AddApiKeyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/AddApiKeyButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/AddChannelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/AddChannelButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/AddProjectButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/AddProjectButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/AddPropertyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/AddPropertyButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/CreatEventButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/CreatEventButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/DocsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/DocsButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/GenerateDescriptionButton2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/GenerateDescriptionButton2.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/GenerateDescriptionsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/GenerateDescriptionsButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/GetStartedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/GetStartedButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/LanguageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/LanguageButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/StartOnbordaButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/StartOnbordaButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/SubmitProperty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/SubmitProperty.tsx -------------------------------------------------------------------------------- /apps/www/src/components/buttons/ViewDetailsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/buttons/ViewDetailsButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/channels/ChannelCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/channels/ChannelCard.tsx -------------------------------------------------------------------------------- /apps/www/src/components/channels/ChannelCard2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/channels/ChannelCard2.tsx -------------------------------------------------------------------------------- /apps/www/src/components/content/mdx-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/content/mdx-card.tsx -------------------------------------------------------------------------------- /apps/www/src/components/content/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/content/mdx-components.tsx -------------------------------------------------------------------------------- /apps/www/src/components/content/templete-blog/deploying-next-apps.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/content/templete-blog/deploying-next-apps.mdx -------------------------------------------------------------------------------- /apps/www/src/components/content/templete-blog/dynamic-routing-static-regeneration copy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/content/templete-blog/dynamic-routing-static-regeneration copy.mdx -------------------------------------------------------------------------------- /apps/www/src/components/content/templete-blog/preview-mode-headless-cms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/content/templete-blog/preview-mode-headless-cms.mdx -------------------------------------------------------------------------------- /apps/www/src/components/content/templete-blog/server-client-components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/content/templete-blog/server-client-components.mdx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/EventsDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/EventsDashboard.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/EventsDashboardComponents/EventDashboardDetailsSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/EventsDashboardComponents/EventDashboardDetailsSheet.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/EventsDashboardComponents/EventsDashboardCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/EventsDashboardComponents/EventsDashboardCards.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/EventsDashboardComponents/EventsDashboardDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/EventsDashboardComponents/EventsDashboardDetails.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/EventsDashboardComponents/EventsDashboardTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/EventsDashboardComponents/EventsDashboardTable.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/beam-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/beam-section.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/bento-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/bento-section.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/businessline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/businessline.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/calltoaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/calltoaction.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/charts/AlertsOverviewChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/charts/AlertsOverviewChart.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/charts/EventsTrendOverTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/charts/EventsTrendOverTime.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/charts/SalesFunnelChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/charts/SalesFunnelChart.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/charts/UserGrowthChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/charts/UserGrowthChart.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/descriptiondisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/descriptiondisplay.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/featuresection1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/featuresection1.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/feautressection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/feautressection.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/generatedtext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/generatedtext.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/header.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/herosection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/herosection.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/herosection2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/herosection2.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/shell.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/test.tsx -------------------------------------------------------------------------------- /apps/www/src/components/dashboard/updatepropertyform2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/dashboard/updatepropertyform2.tsx -------------------------------------------------------------------------------- /apps/www/src/components/docs/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/docs/page-header.tsx -------------------------------------------------------------------------------- /apps/www/src/components/docs/pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/docs/pager.tsx -------------------------------------------------------------------------------- /apps/www/src/components/docs/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/docs/search.tsx -------------------------------------------------------------------------------- /apps/www/src/components/docs/sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/docs/sidebar-nav.tsx -------------------------------------------------------------------------------- /apps/www/src/components/forms/billing-form-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/forms/billing-form-button.tsx -------------------------------------------------------------------------------- /apps/www/src/components/forms/language-form2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/forms/language-form2.tsx -------------------------------------------------------------------------------- /apps/www/src/components/forms/select-input-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/forms/select-input-form.tsx -------------------------------------------------------------------------------- /apps/www/src/components/forms/update-property-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/forms/update-property-form.tsx -------------------------------------------------------------------------------- /apps/www/src/components/forms/user-auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/forms/user-auth-form.tsx -------------------------------------------------------------------------------- /apps/www/src/components/forms/user-name-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/forms/user-name-form.tsx -------------------------------------------------------------------------------- /apps/www/src/components/landing/Integrations-section-landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/landing/Integrations-section-landing.tsx -------------------------------------------------------------------------------- /apps/www/src/components/landing/bottom-section-landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/landing/bottom-section-landing.tsx -------------------------------------------------------------------------------- /apps/www/src/components/landing/cta-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/landing/cta-section.tsx -------------------------------------------------------------------------------- /apps/www/src/components/landing/events-section-landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/landing/events-section-landing.tsx -------------------------------------------------------------------------------- /apps/www/src/components/landing/hero-section-new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/landing/hero-section-new.tsx -------------------------------------------------------------------------------- /apps/www/src/components/landing/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/landing/hero-section.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/language-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/language-modal.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/main-nav.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/mobile-nav.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/nav.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/navbar.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/sign-in-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/sign-in-modal.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/site-footer.tsx -------------------------------------------------------------------------------- /apps/www/src/components/layout/user-account-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/layout/user-account-nav.tsx -------------------------------------------------------------------------------- /apps/www/src/components/modal-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/modal-provider.tsx -------------------------------------------------------------------------------- /apps/www/src/components/notifications/NotificationAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/notifications/NotificationAlert.tsx -------------------------------------------------------------------------------- /apps/www/src/components/onboarding/GenerateApiKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/onboarding/GenerateApiKey.tsx -------------------------------------------------------------------------------- /apps/www/src/components/onboarding/channel-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/onboarding/channel-form.tsx -------------------------------------------------------------------------------- /apps/www/src/components/onboarding/event-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/onboarding/event-form.tsx -------------------------------------------------------------------------------- /apps/www/src/components/onboarding/explore-more.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/onboarding/explore-more.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/Open.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/Open.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenCardFunding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenCardFunding.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenCardFundingChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenCardFundingChart.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenCardFundingDiagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenCardFundingDiagram.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenCardNewUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenCardNewUsers.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenCardUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenCardUsers.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenCardsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenCardsSection.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenMiddleSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenMiddleSection.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenSalaryTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenSalaryTable.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenStartupSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenStartupSection.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenTableTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenTableTeam.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenUsersDiagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenUsersDiagram.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenUsersFunding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenUsersFunding.tsx -------------------------------------------------------------------------------- /apps/www/src/components/open-page/OpenUsersText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/open-page/OpenUsersText.tsx -------------------------------------------------------------------------------- /apps/www/src/components/pricing-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/pricing-cards.tsx -------------------------------------------------------------------------------- /apps/www/src/components/pricing-faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/pricing-faq.tsx -------------------------------------------------------------------------------- /apps/www/src/components/properties/NoPhotoPlaceholder copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/properties/NoPhotoPlaceholder copy.tsx -------------------------------------------------------------------------------- /apps/www/src/components/properties/NoSummaryPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/properties/NoSummaryPlaceholder.tsx -------------------------------------------------------------------------------- /apps/www/src/components/properties/NoTextPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/properties/NoTextPlaceholder.tsx -------------------------------------------------------------------------------- /apps/www/src/components/properties/Propertiestable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/properties/Propertiestable.tsx -------------------------------------------------------------------------------- /apps/www/src/components/properties/PropertyImageWithOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/properties/PropertyImageWithOptions.tsx -------------------------------------------------------------------------------- /apps/www/src/components/properties/PropertyPicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/properties/PropertyPicture.tsx -------------------------------------------------------------------------------- /apps/www/src/components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/providers.tsx -------------------------------------------------------------------------------- /apps/www/src/components/shared/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/shared/callout.tsx -------------------------------------------------------------------------------- /apps/www/src/components/shared/card-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/shared/card-skeleton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/shared/empty-placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/shared/empty-placeholder.tsx -------------------------------------------------------------------------------- /apps/www/src/components/shared/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/shared/icons.tsx -------------------------------------------------------------------------------- /apps/www/src/components/shared/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/shared/modal.tsx -------------------------------------------------------------------------------- /apps/www/src/components/shared/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/shared/toc.tsx -------------------------------------------------------------------------------- /apps/www/src/components/shared/user-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/shared/user-avatar.tsx -------------------------------------------------------------------------------- /apps/www/src/components/table/dashboard/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/table/dashboard/columns.tsx -------------------------------------------------------------------------------- /apps/www/src/components/table/dashboard/data-table-faceted-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/table/dashboard/data-table-faceted-filter.tsx -------------------------------------------------------------------------------- /apps/www/src/components/table/dashboard/data-table-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/table/dashboard/data-table-toolbar.tsx -------------------------------------------------------------------------------- /apps/www/src/components/table/dashboard/data-table-view-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/table/dashboard/data-table-view-options.tsx -------------------------------------------------------------------------------- /apps/www/src/components/table/dashboard/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/table/dashboard/data-table.tsx -------------------------------------------------------------------------------- /apps/www/src/components/table/dashboard/propertystatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/table/dashboard/propertystatus.tsx -------------------------------------------------------------------------------- /apps/www/src/components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/animated-beam-multiple-outputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/animated-beam-multiple-outputs.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/animated-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/animated-beam.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/animated-list-landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/animated-list-landing.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/animated-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/animated-list.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/bento-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/bento-grid.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/bento-section-landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/bento-section-landing.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/border-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/border-beam.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/confetti.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/confetti.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/feature-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/feature-card.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/marquee.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/particles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/particles.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/sphere-mask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/sphere-mask.tsx -------------------------------------------------------------------------------- /apps/www/src/components/ui/text-shimmer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/ui/text-shimmer.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/AllUsersCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/AllUsersCard.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/DeleteDialogCustomer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/DeleteDialogCustomer.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/EditCustomerSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/EditCustomerSheet.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/EmailButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/EmailButton.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UserCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UserCard.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UserCardsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UserCardsSection.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UserChartActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UserChartActivity.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UserEmailCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UserEmailCard.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UserGridActivity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UserGridActivity.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UserMainSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UserMainSection.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UserPowerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UserPowerCard.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UsersCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UsersCard.tsx -------------------------------------------------------------------------------- /apps/www/src/components/users/UsersDashboardTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/components/users/UsersDashboardTable.tsx -------------------------------------------------------------------------------- /apps/www/src/config/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/config/dashboard.ts -------------------------------------------------------------------------------- /apps/www/src/config/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/config/docs.ts -------------------------------------------------------------------------------- /apps/www/src/config/marketing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/config/marketing.ts -------------------------------------------------------------------------------- /apps/www/src/config/property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/config/property.ts -------------------------------------------------------------------------------- /apps/www/src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/config/site.ts -------------------------------------------------------------------------------- /apps/www/src/config/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/config/subscriptions.ts -------------------------------------------------------------------------------- /apps/www/src/content/authors/codehagen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/authors/codehagen.mdx -------------------------------------------------------------------------------- /apps/www/src/content/authors/shadcn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/authors/shadcn.mdx -------------------------------------------------------------------------------- /apps/www/src/content/blog/how-propwrite-makes-listings-irresistible.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/blog/how-propwrite-makes-listings-irresistible.mdx -------------------------------------------------------------------------------- /apps/www/src/content/blog/propwrite_aI_real_estate_blog_post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/blog/propwrite_aI_real_estate_blog_post.mdx -------------------------------------------------------------------------------- /apps/www/src/content/blog/welcome-to-propwrite.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/blog/welcome-to-propwrite.mdx -------------------------------------------------------------------------------- /apps/www/src/content/docs/documentation/code-blocks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/docs/documentation/code-blocks.mdx -------------------------------------------------------------------------------- /apps/www/src/content/docs/documentation/components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/docs/documentation/components.mdx -------------------------------------------------------------------------------- /apps/www/src/content/docs/documentation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/docs/documentation/index.mdx -------------------------------------------------------------------------------- /apps/www/src/content/docs/documentation/style-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/docs/documentation/style-guide.mdx -------------------------------------------------------------------------------- /apps/www/src/content/docs/in-progress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/docs/in-progress.mdx -------------------------------------------------------------------------------- /apps/www/src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/docs/index.mdx -------------------------------------------------------------------------------- /apps/www/src/content/guides/build-blog-using-contentlayer-mdx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/guides/build-blog-using-contentlayer-mdx.mdx -------------------------------------------------------------------------------- /apps/www/src/content/guides/using-next-auth-next-13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/guides/using-next-auth-next-13.mdx -------------------------------------------------------------------------------- /apps/www/src/content/pages/privacy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/pages/privacy.mdx -------------------------------------------------------------------------------- /apps/www/src/content/pages/terms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/content/pages/terms.mdx -------------------------------------------------------------------------------- /apps/www/src/emails/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/emails/components/footer.tsx -------------------------------------------------------------------------------- /apps/www/src/emails/magic-link-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/emails/magic-link-email.tsx -------------------------------------------------------------------------------- /apps/www/src/emails/welcome-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/emails/welcome-email.tsx -------------------------------------------------------------------------------- /apps/www/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/env.ts -------------------------------------------------------------------------------- /apps/www/src/get-user-channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/get-user-channels.ts -------------------------------------------------------------------------------- /apps/www/src/hooks/use-intersection-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/hooks/use-intersection-observer.ts -------------------------------------------------------------------------------- /apps/www/src/hooks/use-language-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/hooks/use-language-modal.ts -------------------------------------------------------------------------------- /apps/www/src/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /apps/www/src/hooks/use-lock-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/hooks/use-lock-body.ts -------------------------------------------------------------------------------- /apps/www/src/hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/hooks/use-media-query.ts -------------------------------------------------------------------------------- /apps/www/src/hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/hooks/use-mounted.ts -------------------------------------------------------------------------------- /apps/www/src/hooks/use-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/hooks/use-scroll.ts -------------------------------------------------------------------------------- /apps/www/src/hooks/use-signin-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/hooks/use-signin-modal.ts -------------------------------------------------------------------------------- /apps/www/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/auth.ts -------------------------------------------------------------------------------- /apps/www/src/lib/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/crypto.ts -------------------------------------------------------------------------------- /apps/www/src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/db.ts -------------------------------------------------------------------------------- /apps/www/src/lib/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/email.ts -------------------------------------------------------------------------------- /apps/www/src/lib/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/exceptions.ts -------------------------------------------------------------------------------- /apps/www/src/lib/pixel-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/pixel-events.tsx -------------------------------------------------------------------------------- /apps/www/src/lib/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/session.ts -------------------------------------------------------------------------------- /apps/www/src/lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/stripe.ts -------------------------------------------------------------------------------- /apps/www/src/lib/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/subscription.ts -------------------------------------------------------------------------------- /apps/www/src/lib/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/toc.ts -------------------------------------------------------------------------------- /apps/www/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/www/src/lib/validations/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/validations/auth.ts -------------------------------------------------------------------------------- /apps/www/src/lib/validations/og.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/validations/og.ts -------------------------------------------------------------------------------- /apps/www/src/lib/validations/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/lib/validations/user.ts -------------------------------------------------------------------------------- /apps/www/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/middleware.ts -------------------------------------------------------------------------------- /apps/www/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/styles/globals.css -------------------------------------------------------------------------------- /apps/www/src/styles/mdx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/styles/mdx.css -------------------------------------------------------------------------------- /apps/www/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/types/index.d.ts -------------------------------------------------------------------------------- /apps/www/src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /apps/www/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/src/types/types.ts -------------------------------------------------------------------------------- /apps/www/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/tailwind.config.ts -------------------------------------------------------------------------------- /apps/www/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/apps/www/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/package.json -------------------------------------------------------------------------------- /packages/db/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/db/eslint.config.js -------------------------------------------------------------------------------- /packages/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/db/index.ts -------------------------------------------------------------------------------- /packages/db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/db/package.json -------------------------------------------------------------------------------- /packages/db/prisma/migrations/0_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/db/prisma/migrations/0_init/migration.sql -------------------------------------------------------------------------------- /packages/db/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/db/prisma/schema.prisma -------------------------------------------------------------------------------- /packages/db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/db/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/eslint.config.js -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/components/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/accordion.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/alert-dialog.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/alert.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/aspect-ratio.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/avatar.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/badge.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/button.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/calendar.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/card.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/checkbox.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/collapsible.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/command.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/context-menu.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/dialog.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/dropdown-menu.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/form.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/hover-card.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/input.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/label.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/menubar.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/navigation-menu.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/popover.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/progress.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/radio-group.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/scroll-area.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/select.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/separator.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/sheet.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/skeleton.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/slider.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/sonner.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/context.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/horizontal-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/horizontal-step.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/step-button-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/step-button-container.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/step-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/step-icon.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/step-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/step-label.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/step.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/types.ts -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/use-media-query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/use-media-query.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/use-stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/use-stepper.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/stepper/vertical-step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/stepper/vertical-step.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/switch.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/table.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/tabs.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/textarea.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/themes.ts -------------------------------------------------------------------------------- /packages/ui/src/components/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/toast.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/toaster.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/toggle.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/tooltip.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/components/use-toast.ts -------------------------------------------------------------------------------- /packages/ui/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/src/utils.ts -------------------------------------------------------------------------------- /packages/ui/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/tailwind.config.ts -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tooling/eslint/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/eslint/base.js -------------------------------------------------------------------------------- /tooling/eslint/nextjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/eslint/nextjs.js -------------------------------------------------------------------------------- /tooling/eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/eslint/package.json -------------------------------------------------------------------------------- /tooling/eslint/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/eslint/react.js -------------------------------------------------------------------------------- /tooling/eslint/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/eslint/tsconfig.json -------------------------------------------------------------------------------- /tooling/eslint/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/eslint/types.d.ts -------------------------------------------------------------------------------- /tooling/prettier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/prettier/index.js -------------------------------------------------------------------------------- /tooling/prettier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/prettier/package.json -------------------------------------------------------------------------------- /tooling/prettier/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/prettier/tsconfig.json -------------------------------------------------------------------------------- /tooling/tailwind/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/tailwind/eslint.config.js -------------------------------------------------------------------------------- /tooling/tailwind/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/tailwind/index.ts -------------------------------------------------------------------------------- /tooling/tailwind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/tailwind/package.json -------------------------------------------------------------------------------- /tooling/tailwind/tailwind.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/tailwind/tailwind.d.ts -------------------------------------------------------------------------------- /tooling/tailwind/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/tailwind/tsconfig.json -------------------------------------------------------------------------------- /tooling/typescript/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/typescript/base.json -------------------------------------------------------------------------------- /tooling/typescript/internal-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/typescript/internal-package.json -------------------------------------------------------------------------------- /tooling/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/tooling/typescript/package.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codehagen/Dingify/HEAD/turbo.json --------------------------------------------------------------------------------