diff --git a/apps/dashboard/.gitignore b/apps/ashboard/.gitignore similarity index 100% rename from apps/dashboard/.gitignore rename to apps/ashboard/.gitignore diff --git a/apps/dashboard/Dockerfile b/apps/ashboard/Dockerfile similarity index 100% rename from apps/dashboard/Dockerfile rename to apps/ashboard/Dockerfile diff --git a/apps/dashboard/README.md b/apps/ashboard/README.md similarity index 100% rename from apps/dashboard/README.md rename to apps/ashboard/README.md diff --git a/apps/dashboard/TOOODOO.md b/apps/ashboard/TOOODOO.md similarity index 100% rename from apps/dashboard/TOOODOO.md rename to apps/ashboard/TOOODOO.md diff --git a/apps/dashboard/components.json b/apps/ashboard/components.json similarity index 100% rename from apps/dashboard/components.json rename to apps/ashboard/components.json diff --git a/apps/dashboard/next.config.mjs b/apps/ashboard/next.config.mjs similarity index 73% rename from apps/dashboard/next.config.mjs rename to apps/ashboard/next.config.mjs index 6c2cd5a9..ec832a13 100644 --- a/apps/dashboard/next.config.mjs +++ b/apps/ashboard/next.config.mjs @@ -7,12 +7,19 @@ await import('./src/env.mjs'); /** @type {import("next").NextConfig} */ const config = { reactStrictMode: true, - transpilePackages: ['@openpanel/queue'], + transpilePackages: [ + '@openpanel/queue', + '@openpanel/db', + '@openpanel/common', + '@openpanel/constants', + '@openpanel/redis', + '@openpanel/validation', + ], eslint: { ignoreDuringBuilds: true }, typescript: { ignoreBuildErrors: true }, experimental: { // Avoid "Critical dependency: the request of a dependency is an expression" - serverComponentsExternalPackages: ['bullmq'], + serverComponentsExternalPackages: ['bullmq', 'ioredis'], }, /** * If you are using `appDir` then you must comment the below `i18n` config out. diff --git a/apps/dashboard/package.json b/apps/ashboard/package.json similarity index 100% rename from apps/dashboard/package.json rename to apps/ashboard/package.json diff --git a/apps/dashboard/postcss.config.cjs b/apps/ashboard/postcss.config.cjs similarity index 100% rename from apps/dashboard/postcss.config.cjs rename to apps/ashboard/postcss.config.cjs diff --git a/apps/dashboard/public/favicon.ico b/apps/ashboard/public/favicon.ico similarity index 100% rename from apps/dashboard/public/favicon.ico rename to apps/ashboard/public/favicon.ico diff --git a/apps/dashboard/public/logo-2.svg b/apps/ashboard/public/logo-2.svg similarity index 100% rename from apps/dashboard/public/logo-2.svg rename to apps/ashboard/public/logo-2.svg diff --git a/apps/dashboard/public/logo-with-text.svg b/apps/ashboard/public/logo-with-text.svg similarity index 100% rename from apps/dashboard/public/logo-with-text.svg rename to apps/ashboard/public/logo-with-text.svg diff --git a/apps/dashboard/public/logo.svg b/apps/ashboard/public/logo.svg similarity index 100% rename from apps/dashboard/public/logo.svg rename to apps/ashboard/public/logo.svg diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/[dashboardId]/list-reports.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/[dashboardId]/list-reports.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/[dashboardId]/list-reports.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/[dashboardId]/list-reports.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/[dashboardId]/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/[dashboardId]/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/[dashboardId]/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/[dashboardId]/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/header-dashboards.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/header-dashboards.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/header-dashboards.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/header-dashboards.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/list-dashboards.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/list-dashboards.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/list-dashboards.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/list-dashboards.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/dashboards/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/charts/events-per-day-chart.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/charts/events-per-day-chart.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/charts/events-per-day-chart.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/charts/events-per-day-chart.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-conversions-list/event-conversions-list.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-conversions-list/event-conversions-list.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-conversions-list/event-conversions-list.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-conversions-list/event-conversions-list.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-conversions-list/index.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-conversions-list/index.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-conversions-list/index.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-conversions-list/index.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-details.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-details.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-details.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-details.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-edit.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-edit.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-edit.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-edit.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-icon.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-icon.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-icon.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-icon.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-list-item.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-list-item.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-list-item.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-list-item.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-list.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-list.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-list.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-list.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-listener.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-listener.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/event-listener.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/event-listener.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/events/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/events/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-menu.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-menu.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-menu.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-menu.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-organization-selector.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-organization-selector.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-organization-selector.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-organization-selector.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-project-selector.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-project-selector.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-project-selector.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-project-selector.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-sidebar.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-sidebar.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-sidebar.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-sidebar.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-sticky-below-header.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-sticky-below-header.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout-sticky-below-header.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout-sticky-below-header.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/layout.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/layout.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/overview-sticky-header.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/overview-sticky-header.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/overview-sticky-header.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/overview-sticky-header.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/page-layout.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/page-layout.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/page-layout.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/page-layout.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/[profileId]/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/[profileId]/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/[profileId]/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/[profileId]/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-last-seen/index.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-last-seen/index.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-last-seen/index.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-last-seen/index.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-list/index.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-list/index.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-list/index.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-list/index.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-list/profile-list.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-list/profile-list.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-list/profile-list.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-list/profile-list.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-top/index.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-top/index.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-top/index.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/profiles/profile-top/index.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/reports/[reportId]/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/reports/[reportId]/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/reports/[reportId]/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/reports/[reportId]/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/reports/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/reports/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/reports/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/reports/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/reports/report-editor.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/reports/report-editor.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/reports/report-editor.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/reports/report-editor.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/clients/list-clients.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/clients/list-clients.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/clients/list-clients.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/clients/list-clients.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/clients/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/clients/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/clients/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/clients/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/edit-organization.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/edit-organization.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/edit-organization.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/edit-organization.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/invite-user.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/invite-user.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/invite-user.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/invite-user.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/invited-users.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/invited-users.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/invited-users.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/invited-users.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/organization/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/edit-profile.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/edit-profile.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/edit-profile.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/edit-profile.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/logout.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/logout.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/logout.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/logout.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/profile/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/projects/list-projects.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/projects/list-projects.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/projects/list-projects.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/projects/list-projects.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/projects/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/projects/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/projects/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/projects/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/references/list-references.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/references/list-references.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/references/list-references.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/references/list-references.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/references/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/references/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/[projectId]/settings/references/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/[projectId]/settings/references/page.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/create-project.tsx b/apps/ashboard/src/app/(app)/[organizationId]/create-project.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/create-project.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/create-project.tsx diff --git a/apps/dashboard/src/app/(app)/[organizationId]/page.tsx b/apps/ashboard/src/app/(app)/[organizationId]/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/[organizationId]/page.tsx rename to apps/ashboard/src/app/(app)/[organizationId]/page.tsx diff --git a/apps/dashboard/src/app/(app)/create-organization.tsx b/apps/ashboard/src/app/(app)/create-organization.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/create-organization.tsx rename to apps/ashboard/src/app/(app)/create-organization.tsx diff --git a/apps/dashboard/src/app/(app)/page.tsx b/apps/ashboard/src/app/(app)/page.tsx similarity index 100% rename from apps/dashboard/src/app/(app)/page.tsx rename to apps/ashboard/src/app/(app)/page.tsx diff --git a/apps/dashboard/src/app/(public)/share/overview/[id]/page.tsx b/apps/ashboard/src/app/(public)/share/overview/[id]/page.tsx similarity index 100% rename from apps/dashboard/src/app/(public)/share/overview/[id]/page.tsx rename to apps/ashboard/src/app/(public)/share/overview/[id]/page.tsx diff --git a/apps/dashboard/src/app/_trpc/client.tsx b/apps/ashboard/src/app/_trpc/client.tsx similarity index 100% rename from apps/dashboard/src/app/_trpc/client.tsx rename to apps/ashboard/src/app/_trpc/client.tsx diff --git a/apps/dashboard/src/app/api/trpc/[trpc]/route.ts b/apps/ashboard/src/app/api/trpc/[trpc]/route.ts similarity index 100% rename from apps/dashboard/src/app/api/trpc/[trpc]/route.ts rename to apps/ashboard/src/app/api/trpc/[trpc]/route.ts diff --git a/apps/dashboard/src/app/auth.tsx b/apps/ashboard/src/app/auth.tsx similarity index 100% rename from apps/dashboard/src/app/auth.tsx rename to apps/ashboard/src/app/auth.tsx diff --git a/apps/dashboard/src/app/layout.tsx b/apps/ashboard/src/app/layout.tsx similarity index 100% rename from apps/dashboard/src/app/layout.tsx rename to apps/ashboard/src/app/layout.tsx diff --git a/apps/dashboard/src/app/manifest.ts b/apps/ashboard/src/app/manifest.ts similarity index 100% rename from apps/dashboard/src/app/manifest.ts rename to apps/ashboard/src/app/manifest.ts diff --git a/apps/dashboard/src/app/providers.tsx b/apps/ashboard/src/app/providers.tsx similarity index 100% rename from apps/dashboard/src/app/providers.tsx rename to apps/ashboard/src/app/providers.tsx diff --git a/apps/dashboard/src/components/button-container.tsx b/apps/ashboard/src/components/button-container.tsx similarity index 100% rename from apps/dashboard/src/components/button-container.tsx rename to apps/ashboard/src/components/button-container.tsx diff --git a/apps/dashboard/src/components/Card.tsx b/apps/ashboard/src/components/card.tsx similarity index 100% rename from apps/dashboard/src/components/Card.tsx rename to apps/ashboard/src/components/card.tsx diff --git a/apps/dashboard/src/components/chart-ssr.tsx b/apps/ashboard/src/components/chart-ssr.tsx similarity index 100% rename from apps/dashboard/src/components/chart-ssr.tsx rename to apps/ashboard/src/components/chart-ssr.tsx diff --git a/apps/dashboard/src/components/clients/client-actions.tsx b/apps/ashboard/src/components/clients/client-actions.tsx similarity index 100% rename from apps/dashboard/src/components/clients/client-actions.tsx rename to apps/ashboard/src/components/clients/client-actions.tsx diff --git a/apps/dashboard/src/components/clients/create-client-success.tsx b/apps/ashboard/src/components/clients/create-client-success.tsx similarity index 100% rename from apps/dashboard/src/components/clients/create-client-success.tsx rename to apps/ashboard/src/components/clients/create-client-success.tsx diff --git a/apps/dashboard/src/components/clients/table.tsx b/apps/ashboard/src/components/clients/table.tsx similarity index 100% rename from apps/dashboard/src/components/clients/table.tsx rename to apps/ashboard/src/components/clients/table.tsx diff --git a/apps/dashboard/src/components/color-square.tsx b/apps/ashboard/src/components/color-square.tsx similarity index 100% rename from apps/dashboard/src/components/color-square.tsx rename to apps/ashboard/src/components/color-square.tsx diff --git a/apps/dashboard/src/components/data-table.tsx b/apps/ashboard/src/components/data-table.tsx similarity index 100% rename from apps/dashboard/src/components/data-table.tsx rename to apps/ashboard/src/components/data-table.tsx diff --git a/apps/dashboard/src/components/events/list-properties-icon.tsx b/apps/ashboard/src/components/events/list-properties-icon.tsx similarity index 100% rename from apps/dashboard/src/components/events/list-properties-icon.tsx rename to apps/ashboard/src/components/events/list-properties-icon.tsx diff --git a/apps/dashboard/src/components/forms/input-with-label.tsx b/apps/ashboard/src/components/forms/input-with-label.tsx similarity index 100% rename from apps/dashboard/src/components/forms/input-with-label.tsx rename to apps/ashboard/src/components/forms/input-with-label.tsx diff --git a/apps/dashboard/src/components/full-page-empty-state.tsx b/apps/ashboard/src/components/full-page-empty-state.tsx similarity index 100% rename from apps/dashboard/src/components/full-page-empty-state.tsx rename to apps/ashboard/src/components/full-page-empty-state.tsx diff --git a/apps/dashboard/src/components/Logo.tsx b/apps/ashboard/src/components/logo.tsx similarity index 100% rename from apps/dashboard/src/components/Logo.tsx rename to apps/ashboard/src/components/logo.tsx diff --git a/apps/dashboard/src/components/overview/filters/overview-filters-buttons.tsx b/apps/ashboard/src/components/overview/filters/overview-filters-buttons.tsx similarity index 100% rename from apps/dashboard/src/components/overview/filters/overview-filters-buttons.tsx rename to apps/ashboard/src/components/overview/filters/overview-filters-buttons.tsx diff --git a/apps/dashboard/src/components/overview/filters/overview-filters-drawer-content.tsx b/apps/ashboard/src/components/overview/filters/overview-filters-drawer-content.tsx similarity index 100% rename from apps/dashboard/src/components/overview/filters/overview-filters-drawer-content.tsx rename to apps/ashboard/src/components/overview/filters/overview-filters-drawer-content.tsx diff --git a/apps/dashboard/src/components/overview/filters/overview-filters-drawer.tsx b/apps/ashboard/src/components/overview/filters/overview-filters-drawer.tsx similarity index 100% rename from apps/dashboard/src/components/overview/filters/overview-filters-drawer.tsx rename to apps/ashboard/src/components/overview/filters/overview-filters-drawer.tsx diff --git a/apps/dashboard/src/components/overview/live-counter/index.tsx b/apps/ashboard/src/components/overview/live-counter/index.tsx similarity index 100% rename from apps/dashboard/src/components/overview/live-counter/index.tsx rename to apps/ashboard/src/components/overview/live-counter/index.tsx diff --git a/apps/dashboard/src/components/overview/live-counter/live-counter.tsx b/apps/ashboard/src/components/overview/live-counter/live-counter.tsx similarity index 100% rename from apps/dashboard/src/components/overview/live-counter/live-counter.tsx rename to apps/ashboard/src/components/overview/live-counter/live-counter.tsx diff --git a/apps/dashboard/src/components/overview/overview-chart-toggle.tsx b/apps/ashboard/src/components/overview/overview-chart-toggle.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-chart-toggle.tsx rename to apps/ashboard/src/components/overview/overview-chart-toggle.tsx diff --git a/apps/dashboard/src/components/overview/overview-latest-events/index.tsx b/apps/ashboard/src/components/overview/overview-latest-events/index.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-latest-events/index.tsx rename to apps/ashboard/src/components/overview/overview-latest-events/index.tsx diff --git a/apps/dashboard/src/components/overview/overview-latest-events/overview-latest-events.tsx b/apps/ashboard/src/components/overview/overview-latest-events/overview-latest-events.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-latest-events/overview-latest-events.tsx rename to apps/ashboard/src/components/overview/overview-latest-events/overview-latest-events.tsx diff --git a/apps/dashboard/src/components/overview/overview-live-histogram.tsx b/apps/ashboard/src/components/overview/overview-live-histogram.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-live-histogram.tsx rename to apps/ashboard/src/components/overview/overview-live-histogram.tsx diff --git a/apps/dashboard/src/components/overview/overview-metrics.tsx b/apps/ashboard/src/components/overview/overview-metrics.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-metrics.tsx rename to apps/ashboard/src/components/overview/overview-metrics.tsx diff --git a/apps/dashboard/src/components/overview/overview-share.tsx b/apps/ashboard/src/components/overview/overview-share.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-share.tsx rename to apps/ashboard/src/components/overview/overview-share.tsx diff --git a/apps/dashboard/src/components/overview/overview-top-devices.tsx b/apps/ashboard/src/components/overview/overview-top-devices.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-top-devices.tsx rename to apps/ashboard/src/components/overview/overview-top-devices.tsx diff --git a/apps/dashboard/src/components/overview/overview-top-events/index.tsx b/apps/ashboard/src/components/overview/overview-top-events/index.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-top-events/index.tsx rename to apps/ashboard/src/components/overview/overview-top-events/index.tsx diff --git a/apps/dashboard/src/components/overview/overview-top-events/overview-top-events.tsx b/apps/ashboard/src/components/overview/overview-top-events/overview-top-events.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-top-events/overview-top-events.tsx rename to apps/ashboard/src/components/overview/overview-top-events/overview-top-events.tsx diff --git a/apps/dashboard/src/components/overview/overview-top-geo.tsx b/apps/ashboard/src/components/overview/overview-top-geo.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-top-geo.tsx rename to apps/ashboard/src/components/overview/overview-top-geo.tsx diff --git a/apps/dashboard/src/components/overview/overview-top-pages.tsx b/apps/ashboard/src/components/overview/overview-top-pages.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-top-pages.tsx rename to apps/ashboard/src/components/overview/overview-top-pages.tsx diff --git a/apps/dashboard/src/components/overview/overview-top-sources.tsx b/apps/ashboard/src/components/overview/overview-top-sources.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-top-sources.tsx rename to apps/ashboard/src/components/overview/overview-top-sources.tsx diff --git a/apps/dashboard/src/components/overview/overview-widget.tsx b/apps/ashboard/src/components/overview/overview-widget.tsx similarity index 100% rename from apps/dashboard/src/components/overview/overview-widget.tsx rename to apps/ashboard/src/components/overview/overview-widget.tsx diff --git a/apps/dashboard/src/components/overview/useOverviewOptions.ts b/apps/ashboard/src/components/overview/useOverviewOptions.ts similarity index 100% rename from apps/dashboard/src/components/overview/useOverviewOptions.ts rename to apps/ashboard/src/components/overview/useOverviewOptions.ts diff --git a/apps/dashboard/src/components/overview/useOverviewWidget.tsx b/apps/ashboard/src/components/overview/useOverviewWidget.tsx similarity index 100% rename from apps/dashboard/src/components/overview/useOverviewWidget.tsx rename to apps/ashboard/src/components/overview/useOverviewWidget.tsx diff --git a/apps/dashboard/src/components/Pagination.tsx b/apps/ashboard/src/components/pagination.tsx similarity index 100% rename from apps/dashboard/src/components/Pagination.tsx rename to apps/ashboard/src/components/pagination.tsx diff --git a/apps/dashboard/src/components/profiles/profile-avatar.tsx b/apps/ashboard/src/components/profiles/profile-avatar.tsx similarity index 100% rename from apps/dashboard/src/components/profiles/profile-avatar.tsx rename to apps/ashboard/src/components/profiles/profile-avatar.tsx diff --git a/apps/dashboard/src/components/projects/project-actions.tsx b/apps/ashboard/src/components/projects/project-actions.tsx similarity index 100% rename from apps/dashboard/src/components/projects/project-actions.tsx rename to apps/ashboard/src/components/projects/project-actions.tsx diff --git a/apps/dashboard/src/components/projects/project-card.tsx b/apps/ashboard/src/components/projects/project-card.tsx similarity index 100% rename from apps/dashboard/src/components/projects/project-card.tsx rename to apps/ashboard/src/components/projects/project-card.tsx diff --git a/apps/dashboard/src/components/projects/table.tsx b/apps/ashboard/src/components/projects/table.tsx similarity index 100% rename from apps/dashboard/src/components/projects/table.tsx rename to apps/ashboard/src/components/projects/table.tsx diff --git a/apps/dashboard/src/components/react-virtualized-auto-sizer.tsx b/apps/ashboard/src/components/react-virtualized-auto-sizer.tsx similarity index 100% rename from apps/dashboard/src/components/react-virtualized-auto-sizer.tsx rename to apps/ashboard/src/components/react-virtualized-auto-sizer.tsx diff --git a/apps/dashboard/src/components/references/table.tsx b/apps/ashboard/src/components/references/table.tsx similarity index 100% rename from apps/dashboard/src/components/references/table.tsx rename to apps/ashboard/src/components/references/table.tsx diff --git a/apps/dashboard/src/components/report/PreviousDiffIndicator.tsx b/apps/ashboard/src/components/report/PreviousDiffIndicator.tsx similarity index 100% rename from apps/dashboard/src/components/report/PreviousDiffIndicator.tsx rename to apps/ashboard/src/components/report/PreviousDiffIndicator.tsx diff --git a/apps/dashboard/src/components/report/ReportChartType.tsx b/apps/ashboard/src/components/report/ReportChartType.tsx similarity index 100% rename from apps/dashboard/src/components/report/ReportChartType.tsx rename to apps/ashboard/src/components/report/ReportChartType.tsx diff --git a/apps/dashboard/src/components/report/ReportInterval.tsx b/apps/ashboard/src/components/report/ReportInterval.tsx similarity index 100% rename from apps/dashboard/src/components/report/ReportInterval.tsx rename to apps/ashboard/src/components/report/ReportInterval.tsx diff --git a/apps/dashboard/src/components/report/ReportLineType.tsx b/apps/ashboard/src/components/report/ReportLineType.tsx similarity index 100% rename from apps/dashboard/src/components/report/ReportLineType.tsx rename to apps/ashboard/src/components/report/ReportLineType.tsx diff --git a/apps/dashboard/src/components/report/ReportRange.tsx b/apps/ashboard/src/components/report/ReportRange.tsx similarity index 100% rename from apps/dashboard/src/components/report/ReportRange.tsx rename to apps/ashboard/src/components/report/ReportRange.tsx diff --git a/apps/dashboard/src/components/report/ReportSaveButton.tsx b/apps/ashboard/src/components/report/ReportSaveButton.tsx similarity index 100% rename from apps/dashboard/src/components/report/ReportSaveButton.tsx rename to apps/ashboard/src/components/report/ReportSaveButton.tsx diff --git a/apps/dashboard/src/components/report/chart/Chart.tsx b/apps/ashboard/src/components/report/chart/Chart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/Chart.tsx rename to apps/ashboard/src/components/report/chart/Chart.tsx diff --git a/apps/dashboard/src/components/report/chart/ChartAnimation.tsx b/apps/ashboard/src/components/report/chart/ChartAnimation.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ChartAnimation.tsx rename to apps/ashboard/src/components/report/chart/ChartAnimation.tsx diff --git a/apps/dashboard/src/components/report/chart/ChartEmpty.tsx b/apps/ashboard/src/components/report/chart/ChartEmpty.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ChartEmpty.tsx rename to apps/ashboard/src/components/report/chart/ChartEmpty.tsx diff --git a/apps/dashboard/src/components/report/chart/ChartLoading.tsx b/apps/ashboard/src/components/report/chart/ChartLoading.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ChartLoading.tsx rename to apps/ashboard/src/components/report/chart/ChartLoading.tsx diff --git a/apps/dashboard/src/components/report/chart/ChartProvider.tsx b/apps/ashboard/src/components/report/chart/ChartProvider.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ChartProvider.tsx rename to apps/ashboard/src/components/report/chart/ChartProvider.tsx diff --git a/apps/dashboard/src/components/report/chart/LazyChart.tsx b/apps/ashboard/src/components/report/chart/LazyChart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/LazyChart.tsx rename to apps/ashboard/src/components/report/chart/LazyChart.tsx diff --git a/apps/dashboard/src/components/report/chart/MetricCard.tsx b/apps/ashboard/src/components/report/chart/MetricCard.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/MetricCard.tsx rename to apps/ashboard/src/components/report/chart/MetricCard.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportAreaChart.tsx b/apps/ashboard/src/components/report/chart/ReportAreaChart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportAreaChart.tsx rename to apps/ashboard/src/components/report/chart/ReportAreaChart.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportBarChart.tsx b/apps/ashboard/src/components/report/chart/ReportBarChart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportBarChart.tsx rename to apps/ashboard/src/components/report/chart/ReportBarChart.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportChartTooltip.tsx b/apps/ashboard/src/components/report/chart/ReportChartTooltip.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportChartTooltip.tsx rename to apps/ashboard/src/components/report/chart/ReportChartTooltip.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportHistogramChart.tsx b/apps/ashboard/src/components/report/chart/ReportHistogramChart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportHistogramChart.tsx rename to apps/ashboard/src/components/report/chart/ReportHistogramChart.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportLineChart.tsx b/apps/ashboard/src/components/report/chart/ReportLineChart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportLineChart.tsx rename to apps/ashboard/src/components/report/chart/ReportLineChart.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportMapChart.tsx b/apps/ashboard/src/components/report/chart/ReportMapChart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportMapChart.tsx rename to apps/ashboard/src/components/report/chart/ReportMapChart.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportMetricChart.tsx b/apps/ashboard/src/components/report/chart/ReportMetricChart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportMetricChart.tsx rename to apps/ashboard/src/components/report/chart/ReportMetricChart.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportPieChart.tsx b/apps/ashboard/src/components/report/chart/ReportPieChart.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportPieChart.tsx rename to apps/ashboard/src/components/report/chart/ReportPieChart.tsx diff --git a/apps/dashboard/src/components/report/chart/ReportTable.tsx b/apps/ashboard/src/components/report/chart/ReportTable.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ReportTable.tsx rename to apps/ashboard/src/components/report/chart/ReportTable.tsx diff --git a/apps/dashboard/src/components/report/chart/ResponsiveContainer.tsx b/apps/ashboard/src/components/report/chart/ResponsiveContainer.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/ResponsiveContainer.tsx rename to apps/ashboard/src/components/report/chart/ResponsiveContainer.tsx diff --git a/apps/dashboard/src/components/report/chart/SerieIcon.tsx b/apps/ashboard/src/components/report/chart/SerieIcon.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/SerieIcon.tsx rename to apps/ashboard/src/components/report/chart/SerieIcon.tsx diff --git a/apps/dashboard/src/components/report/chart/chart-utils.ts b/apps/ashboard/src/components/report/chart/chart-utils.ts similarity index 100% rename from apps/dashboard/src/components/report/chart/chart-utils.ts rename to apps/ashboard/src/components/report/chart/chart-utils.ts diff --git a/apps/dashboard/src/components/report/chart/index.tsx b/apps/ashboard/src/components/report/chart/index.tsx similarity index 100% rename from apps/dashboard/src/components/report/chart/index.tsx rename to apps/ashboard/src/components/report/chart/index.tsx diff --git a/apps/dashboard/src/components/report/funnel/Funnel.tsx b/apps/ashboard/src/components/report/funnel/Funnel.tsx similarity index 100% rename from apps/dashboard/src/components/report/funnel/Funnel.tsx rename to apps/ashboard/src/components/report/funnel/Funnel.tsx diff --git a/apps/dashboard/src/components/report/funnel/index.tsx b/apps/ashboard/src/components/report/funnel/index.tsx similarity index 100% rename from apps/dashboard/src/components/report/funnel/index.tsx rename to apps/ashboard/src/components/report/funnel/index.tsx diff --git a/apps/dashboard/src/components/report/reportSlice.ts b/apps/ashboard/src/components/report/reportSlice.ts similarity index 100% rename from apps/dashboard/src/components/report/reportSlice.ts rename to apps/ashboard/src/components/report/reportSlice.ts diff --git a/apps/dashboard/src/components/report/sidebar/EventPropertiesCombobox.tsx b/apps/ashboard/src/components/report/sidebar/EventPropertiesCombobox.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/EventPropertiesCombobox.tsx rename to apps/ashboard/src/components/report/sidebar/EventPropertiesCombobox.tsx diff --git a/apps/dashboard/src/components/report/sidebar/ReportBreakdownMore.tsx b/apps/ashboard/src/components/report/sidebar/ReportBreakdownMore.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/ReportBreakdownMore.tsx rename to apps/ashboard/src/components/report/sidebar/ReportBreakdownMore.tsx diff --git a/apps/dashboard/src/components/report/sidebar/ReportBreakdowns.tsx b/apps/ashboard/src/components/report/sidebar/ReportBreakdowns.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/ReportBreakdowns.tsx rename to apps/ashboard/src/components/report/sidebar/ReportBreakdowns.tsx diff --git a/apps/dashboard/src/components/report/sidebar/ReportEventMore.tsx b/apps/ashboard/src/components/report/sidebar/ReportEventMore.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/ReportEventMore.tsx rename to apps/ashboard/src/components/report/sidebar/ReportEventMore.tsx diff --git a/apps/dashboard/src/components/report/sidebar/ReportEvents.tsx b/apps/ashboard/src/components/report/sidebar/ReportEvents.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/ReportEvents.tsx rename to apps/ashboard/src/components/report/sidebar/ReportEvents.tsx diff --git a/apps/dashboard/src/components/report/sidebar/ReportForumula.tsx b/apps/ashboard/src/components/report/sidebar/ReportForumula.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/ReportForumula.tsx rename to apps/ashboard/src/components/report/sidebar/ReportForumula.tsx diff --git a/apps/dashboard/src/components/report/sidebar/ReportSidebar.tsx b/apps/ashboard/src/components/report/sidebar/ReportSidebar.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/ReportSidebar.tsx rename to apps/ashboard/src/components/report/sidebar/ReportSidebar.tsx diff --git a/apps/dashboard/src/components/report/sidebar/filters/FilterItem.tsx b/apps/ashboard/src/components/report/sidebar/filters/FilterItem.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/filters/FilterItem.tsx rename to apps/ashboard/src/components/report/sidebar/filters/FilterItem.tsx diff --git a/apps/dashboard/src/components/report/sidebar/filters/FiltersCombobox.tsx b/apps/ashboard/src/components/report/sidebar/filters/FiltersCombobox.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/filters/FiltersCombobox.tsx rename to apps/ashboard/src/components/report/sidebar/filters/FiltersCombobox.tsx diff --git a/apps/dashboard/src/components/report/sidebar/filters/FiltersList.tsx b/apps/ashboard/src/components/report/sidebar/filters/FiltersList.tsx similarity index 100% rename from apps/dashboard/src/components/report/sidebar/filters/FiltersList.tsx rename to apps/ashboard/src/components/report/sidebar/filters/FiltersList.tsx diff --git a/apps/dashboard/src/components/Syntax.tsx b/apps/ashboard/src/components/syntax.tsx similarity index 100% rename from apps/dashboard/src/components/Syntax.tsx rename to apps/ashboard/src/components/syntax.tsx diff --git a/apps/dashboard/src/components/ui/RenderDots.tsx b/apps/ashboard/src/components/ui/RenderDots.tsx similarity index 100% rename from apps/dashboard/src/components/ui/RenderDots.tsx rename to apps/ashboard/src/components/ui/RenderDots.tsx diff --git a/apps/dashboard/src/components/ui/accordion.tsx b/apps/ashboard/src/components/ui/accordion.tsx similarity index 100% rename from apps/dashboard/src/components/ui/accordion.tsx rename to apps/ashboard/src/components/ui/accordion.tsx diff --git a/apps/dashboard/src/components/ui/alert-dialog.tsx b/apps/ashboard/src/components/ui/alert-dialog.tsx similarity index 100% rename from apps/dashboard/src/components/ui/alert-dialog.tsx rename to apps/ashboard/src/components/ui/alert-dialog.tsx diff --git a/apps/dashboard/src/components/ui/alert.tsx b/apps/ashboard/src/components/ui/alert.tsx similarity index 100% rename from apps/dashboard/src/components/ui/alert.tsx rename to apps/ashboard/src/components/ui/alert.tsx diff --git a/apps/dashboard/src/components/ui/aspect-ratio.tsx b/apps/ashboard/src/components/ui/aspect-ratio.tsx similarity index 100% rename from apps/dashboard/src/components/ui/aspect-ratio.tsx rename to apps/ashboard/src/components/ui/aspect-ratio.tsx diff --git a/apps/dashboard/src/components/ui/avatar.tsx b/apps/ashboard/src/components/ui/avatar.tsx similarity index 100% rename from apps/dashboard/src/components/ui/avatar.tsx rename to apps/ashboard/src/components/ui/avatar.tsx diff --git a/apps/dashboard/src/components/ui/badge.tsx b/apps/ashboard/src/components/ui/badge.tsx similarity index 100% rename from apps/dashboard/src/components/ui/badge.tsx rename to apps/ashboard/src/components/ui/badge.tsx diff --git a/apps/dashboard/src/components/ui/button.tsx b/apps/ashboard/src/components/ui/button.tsx similarity index 100% rename from apps/dashboard/src/components/ui/button.tsx rename to apps/ashboard/src/components/ui/button.tsx diff --git a/apps/dashboard/src/components/ui/calendar.tsx b/apps/ashboard/src/components/ui/calendar.tsx similarity index 100% rename from apps/dashboard/src/components/ui/calendar.tsx rename to apps/ashboard/src/components/ui/calendar.tsx diff --git a/apps/dashboard/src/components/ui/carousel.tsx b/apps/ashboard/src/components/ui/carousel.tsx similarity index 100% rename from apps/dashboard/src/components/ui/carousel.tsx rename to apps/ashboard/src/components/ui/carousel.tsx diff --git a/apps/dashboard/src/components/ui/checkbox.tsx b/apps/ashboard/src/components/ui/checkbox.tsx similarity index 100% rename from apps/dashboard/src/components/ui/checkbox.tsx rename to apps/ashboard/src/components/ui/checkbox.tsx diff --git a/apps/dashboard/src/components/ui/combobox-advanced.tsx b/apps/ashboard/src/components/ui/combobox-advanced.tsx similarity index 100% rename from apps/dashboard/src/components/ui/combobox-advanced.tsx rename to apps/ashboard/src/components/ui/combobox-advanced.tsx diff --git a/apps/dashboard/src/components/ui/combobox.tsx b/apps/ashboard/src/components/ui/combobox.tsx similarity index 100% rename from apps/dashboard/src/components/ui/combobox.tsx rename to apps/ashboard/src/components/ui/combobox.tsx diff --git a/apps/dashboard/src/components/ui/command.tsx b/apps/ashboard/src/components/ui/command.tsx similarity index 100% rename from apps/dashboard/src/components/ui/command.tsx rename to apps/ashboard/src/components/ui/command.tsx diff --git a/apps/dashboard/src/components/ui/dialog.tsx b/apps/ashboard/src/components/ui/dialog.tsx similarity index 100% rename from apps/dashboard/src/components/ui/dialog.tsx rename to apps/ashboard/src/components/ui/dialog.tsx diff --git a/apps/dashboard/src/components/ui/dropdown-menu.tsx b/apps/ashboard/src/components/ui/dropdown-menu.tsx similarity index 100% rename from apps/dashboard/src/components/ui/dropdown-menu.tsx rename to apps/ashboard/src/components/ui/dropdown-menu.tsx diff --git a/apps/dashboard/src/components/ui/gradient-background.tsx b/apps/ashboard/src/components/ui/gradient-background.tsx similarity index 100% rename from apps/dashboard/src/components/ui/gradient-background.tsx rename to apps/ashboard/src/components/ui/gradient-background.tsx diff --git a/apps/dashboard/src/components/ui/input.tsx b/apps/ashboard/src/components/ui/input.tsx similarity index 100% rename from apps/dashboard/src/components/ui/input.tsx rename to apps/ashboard/src/components/ui/input.tsx diff --git a/apps/dashboard/src/components/ui/key-value.tsx b/apps/ashboard/src/components/ui/key-value.tsx similarity index 100% rename from apps/dashboard/src/components/ui/key-value.tsx rename to apps/ashboard/src/components/ui/key-value.tsx diff --git a/apps/dashboard/src/components/ui/label.tsx b/apps/ashboard/src/components/ui/label.tsx similarity index 100% rename from apps/dashboard/src/components/ui/label.tsx rename to apps/ashboard/src/components/ui/label.tsx diff --git a/apps/dashboard/src/components/ui/popover.tsx b/apps/ashboard/src/components/ui/popover.tsx similarity index 100% rename from apps/dashboard/src/components/ui/popover.tsx rename to apps/ashboard/src/components/ui/popover.tsx diff --git a/apps/dashboard/src/components/ui/progress.tsx b/apps/ashboard/src/components/ui/progress.tsx similarity index 100% rename from apps/dashboard/src/components/ui/progress.tsx rename to apps/ashboard/src/components/ui/progress.tsx diff --git a/apps/dashboard/src/components/ui/radio-group.tsx b/apps/ashboard/src/components/ui/radio-group.tsx similarity index 100% rename from apps/dashboard/src/components/ui/radio-group.tsx rename to apps/ashboard/src/components/ui/radio-group.tsx diff --git a/apps/dashboard/src/components/ui/scroll-area.tsx b/apps/ashboard/src/components/ui/scroll-area.tsx similarity index 100% rename from apps/dashboard/src/components/ui/scroll-area.tsx rename to apps/ashboard/src/components/ui/scroll-area.tsx diff --git a/apps/dashboard/src/components/ui/sheet.tsx b/apps/ashboard/src/components/ui/sheet.tsx similarity index 100% rename from apps/dashboard/src/components/ui/sheet.tsx rename to apps/ashboard/src/components/ui/sheet.tsx diff --git a/apps/dashboard/src/components/ui/sonner.tsx b/apps/ashboard/src/components/ui/sonner.tsx similarity index 100% rename from apps/dashboard/src/components/ui/sonner.tsx rename to apps/ashboard/src/components/ui/sonner.tsx diff --git a/apps/dashboard/src/components/ui/table.tsx b/apps/ashboard/src/components/ui/table.tsx similarity index 100% rename from apps/dashboard/src/components/ui/table.tsx rename to apps/ashboard/src/components/ui/table.tsx diff --git a/apps/dashboard/src/components/ui/tabs.tsx b/apps/ashboard/src/components/ui/tabs.tsx similarity index 100% rename from apps/dashboard/src/components/ui/tabs.tsx rename to apps/ashboard/src/components/ui/tabs.tsx diff --git a/apps/dashboard/src/components/ui/toast.tsx b/apps/ashboard/src/components/ui/toast.tsx similarity index 100% rename from apps/dashboard/src/components/ui/toast.tsx rename to apps/ashboard/src/components/ui/toast.tsx diff --git a/apps/dashboard/src/components/ui/toaster.tsx b/apps/ashboard/src/components/ui/toaster.tsx similarity index 100% rename from apps/dashboard/src/components/ui/toaster.tsx rename to apps/ashboard/src/components/ui/toaster.tsx diff --git a/apps/dashboard/src/components/ui/toggle-group.tsx b/apps/ashboard/src/components/ui/toggle-group.tsx similarity index 100% rename from apps/dashboard/src/components/ui/toggle-group.tsx rename to apps/ashboard/src/components/ui/toggle-group.tsx diff --git a/apps/dashboard/src/components/ui/toggle.tsx b/apps/ashboard/src/components/ui/toggle.tsx similarity index 100% rename from apps/dashboard/src/components/ui/toggle.tsx rename to apps/ashboard/src/components/ui/toggle.tsx diff --git a/apps/dashboard/src/components/ui/tooltip.tsx b/apps/ashboard/src/components/ui/tooltip.tsx similarity index 100% rename from apps/dashboard/src/components/ui/tooltip.tsx rename to apps/ashboard/src/components/ui/tooltip.tsx diff --git a/apps/dashboard/src/components/widget-table.tsx b/apps/ashboard/src/components/widget-table.tsx similarity index 100% rename from apps/dashboard/src/components/widget-table.tsx rename to apps/ashboard/src/components/widget-table.tsx diff --git a/apps/dashboard/src/components/Widget.tsx b/apps/ashboard/src/components/widget.tsx similarity index 100% rename from apps/dashboard/src/components/Widget.tsx rename to apps/ashboard/src/components/widget.tsx diff --git a/apps/dashboard/src/env.mjs b/apps/ashboard/src/env.mjs similarity index 100% rename from apps/dashboard/src/env.mjs rename to apps/ashboard/src/env.mjs diff --git a/apps/dashboard/src/hooks/useAppParams.ts b/apps/ashboard/src/hooks/useAppParams.ts similarity index 100% rename from apps/dashboard/src/hooks/useAppParams.ts rename to apps/ashboard/src/hooks/useAppParams.ts diff --git a/apps/dashboard/src/hooks/useBreakpoint.ts b/apps/ashboard/src/hooks/useBreakpoint.ts similarity index 100% rename from apps/dashboard/src/hooks/useBreakpoint.ts rename to apps/ashboard/src/hooks/useBreakpoint.ts diff --git a/apps/dashboard/src/hooks/useCursor.ts b/apps/ashboard/src/hooks/useCursor.ts similarity index 100% rename from apps/dashboard/src/hooks/useCursor.ts rename to apps/ashboard/src/hooks/useCursor.ts diff --git a/apps/dashboard/src/hooks/useDebounceFn.ts b/apps/ashboard/src/hooks/useDebounceFn.ts similarity index 100% rename from apps/dashboard/src/hooks/useDebounceFn.ts rename to apps/ashboard/src/hooks/useDebounceFn.ts diff --git a/apps/dashboard/src/hooks/useEventNames.ts b/apps/ashboard/src/hooks/useEventNames.ts similarity index 100% rename from apps/dashboard/src/hooks/useEventNames.ts rename to apps/ashboard/src/hooks/useEventNames.ts diff --git a/apps/dashboard/src/hooks/useEventProperties.ts b/apps/ashboard/src/hooks/useEventProperties.ts similarity index 100% rename from apps/dashboard/src/hooks/useEventProperties.ts rename to apps/ashboard/src/hooks/useEventProperties.ts diff --git a/apps/dashboard/src/hooks/useEventQueryFilters.ts b/apps/ashboard/src/hooks/useEventQueryFilters.ts similarity index 100% rename from apps/dashboard/src/hooks/useEventQueryFilters.ts rename to apps/ashboard/src/hooks/useEventQueryFilters.ts diff --git a/apps/dashboard/src/hooks/useEventValues.ts b/apps/ashboard/src/hooks/useEventValues.ts similarity index 100% rename from apps/dashboard/src/hooks/useEventValues.ts rename to apps/ashboard/src/hooks/useEventValues.ts diff --git a/apps/dashboard/src/hooks/useFormatDateInterval.ts b/apps/ashboard/src/hooks/useFormatDateInterval.ts similarity index 100% rename from apps/dashboard/src/hooks/useFormatDateInterval.ts rename to apps/ashboard/src/hooks/useFormatDateInterval.ts diff --git a/apps/dashboard/src/hooks/useMappings.ts b/apps/ashboard/src/hooks/useMappings.ts similarity index 100% rename from apps/dashboard/src/hooks/useMappings.ts rename to apps/ashboard/src/hooks/useMappings.ts diff --git a/apps/dashboard/src/hooks/useNumerFormatter.ts b/apps/ashboard/src/hooks/useNumerFormatter.ts similarity index 100% rename from apps/dashboard/src/hooks/useNumerFormatter.ts rename to apps/ashboard/src/hooks/useNumerFormatter.ts diff --git a/apps/dashboard/src/hooks/useProfileProperties.ts b/apps/ashboard/src/hooks/useProfileProperties.ts similarity index 100% rename from apps/dashboard/src/hooks/useProfileProperties.ts rename to apps/ashboard/src/hooks/useProfileProperties.ts diff --git a/apps/dashboard/src/hooks/useProfileValues.ts b/apps/ashboard/src/hooks/useProfileValues.ts similarity index 100% rename from apps/dashboard/src/hooks/useProfileValues.ts rename to apps/ashboard/src/hooks/useProfileValues.ts diff --git a/apps/dashboard/src/hooks/useRechartDataModel.ts b/apps/ashboard/src/hooks/useRechartDataModel.ts similarity index 100% rename from apps/dashboard/src/hooks/useRechartDataModel.ts rename to apps/ashboard/src/hooks/useRechartDataModel.ts diff --git a/apps/dashboard/src/hooks/useThrottle.ts b/apps/ashboard/src/hooks/useThrottle.ts similarity index 100% rename from apps/dashboard/src/hooks/useThrottle.ts rename to apps/ashboard/src/hooks/useThrottle.ts diff --git a/apps/dashboard/src/hooks/useVisibleSeries.ts b/apps/ashboard/src/hooks/useVisibleSeries.ts similarity index 100% rename from apps/dashboard/src/hooks/useVisibleSeries.ts rename to apps/ashboard/src/hooks/useVisibleSeries.ts diff --git a/apps/dashboard/src/lottie/airplane.json b/apps/ashboard/src/lottie/airplane.json similarity index 100% rename from apps/dashboard/src/lottie/airplane.json rename to apps/ashboard/src/lottie/airplane.json diff --git a/apps/dashboard/src/lottie/ballon.json b/apps/ashboard/src/lottie/ballon.json similarity index 100% rename from apps/dashboard/src/lottie/ballon.json rename to apps/ashboard/src/lottie/ballon.json diff --git a/apps/dashboard/src/lottie/no-data.json b/apps/ashboard/src/lottie/no-data.json similarity index 100% rename from apps/dashboard/src/lottie/no-data.json rename to apps/ashboard/src/lottie/no-data.json diff --git a/apps/dashboard/src/mappings.json b/apps/ashboard/src/mappings.json similarity index 100% rename from apps/dashboard/src/mappings.json rename to apps/ashboard/src/mappings.json diff --git a/apps/dashboard/src/middleware.ts b/apps/ashboard/src/middleware.ts similarity index 100% rename from apps/dashboard/src/middleware.ts rename to apps/ashboard/src/middleware.ts diff --git a/apps/dashboard/src/modals/AddClient.tsx b/apps/ashboard/src/modals/AddClient.tsx similarity index 100% rename from apps/dashboard/src/modals/AddClient.tsx rename to apps/ashboard/src/modals/AddClient.tsx diff --git a/apps/dashboard/src/modals/AddDashboard.tsx b/apps/ashboard/src/modals/AddDashboard.tsx similarity index 100% rename from apps/dashboard/src/modals/AddDashboard.tsx rename to apps/ashboard/src/modals/AddDashboard.tsx diff --git a/apps/dashboard/src/modals/AddProject.tsx b/apps/ashboard/src/modals/AddProject.tsx similarity index 100% rename from apps/dashboard/src/modals/AddProject.tsx rename to apps/ashboard/src/modals/AddProject.tsx diff --git a/apps/dashboard/src/modals/AddReference.tsx b/apps/ashboard/src/modals/AddReference.tsx similarity index 100% rename from apps/dashboard/src/modals/AddReference.tsx rename to apps/ashboard/src/modals/AddReference.tsx diff --git a/apps/dashboard/src/modals/Confirm.tsx b/apps/ashboard/src/modals/Confirm.tsx similarity index 100% rename from apps/dashboard/src/modals/Confirm.tsx rename to apps/ashboard/src/modals/Confirm.tsx diff --git a/apps/dashboard/src/modals/EditClient.tsx b/apps/ashboard/src/modals/EditClient.tsx similarity index 100% rename from apps/dashboard/src/modals/EditClient.tsx rename to apps/ashboard/src/modals/EditClient.tsx diff --git a/apps/dashboard/src/modals/EditDashboard.tsx b/apps/ashboard/src/modals/EditDashboard.tsx similarity index 100% rename from apps/dashboard/src/modals/EditDashboard.tsx rename to apps/ashboard/src/modals/EditDashboard.tsx diff --git a/apps/dashboard/src/modals/EditProject.tsx b/apps/ashboard/src/modals/EditProject.tsx similarity index 100% rename from apps/dashboard/src/modals/EditProject.tsx rename to apps/ashboard/src/modals/EditProject.tsx diff --git a/apps/dashboard/src/modals/EditReport.tsx b/apps/ashboard/src/modals/EditReport.tsx similarity index 100% rename from apps/dashboard/src/modals/EditReport.tsx rename to apps/ashboard/src/modals/EditReport.tsx diff --git a/apps/dashboard/src/modals/Modal/Container.tsx b/apps/ashboard/src/modals/Modal/Container.tsx similarity index 100% rename from apps/dashboard/src/modals/Modal/Container.tsx rename to apps/ashboard/src/modals/Modal/Container.tsx diff --git a/apps/dashboard/src/modals/SaveReport.tsx b/apps/ashboard/src/modals/SaveReport.tsx similarity index 100% rename from apps/dashboard/src/modals/SaveReport.tsx rename to apps/ashboard/src/modals/SaveReport.tsx diff --git a/apps/dashboard/src/modals/ShareOverviewModal.tsx b/apps/ashboard/src/modals/ShareOverviewModal.tsx similarity index 100% rename from apps/dashboard/src/modals/ShareOverviewModal.tsx rename to apps/ashboard/src/modals/ShareOverviewModal.tsx diff --git a/apps/dashboard/src/modals/index.tsx b/apps/ashboard/src/modals/index.tsx similarity index 100% rename from apps/dashboard/src/modals/index.tsx rename to apps/ashboard/src/modals/index.tsx diff --git a/apps/dashboard/src/redux/index.ts b/apps/ashboard/src/redux/index.ts similarity index 100% rename from apps/dashboard/src/redux/index.ts rename to apps/ashboard/src/redux/index.ts diff --git a/apps/dashboard/src/server/api/root.ts b/apps/ashboard/src/server/api/root.ts similarity index 100% rename from apps/dashboard/src/server/api/root.ts rename to apps/ashboard/src/server/api/root.ts diff --git a/apps/dashboard/src/server/api/routers/chart.helpers.ts b/apps/ashboard/src/server/api/routers/chart.helpers.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/chart.helpers.ts rename to apps/ashboard/src/server/api/routers/chart.helpers.ts diff --git a/apps/dashboard/src/server/api/routers/chart.ts b/apps/ashboard/src/server/api/routers/chart.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/chart.ts rename to apps/ashboard/src/server/api/routers/chart.ts diff --git a/apps/dashboard/src/server/api/routers/client.ts b/apps/ashboard/src/server/api/routers/client.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/client.ts rename to apps/ashboard/src/server/api/routers/client.ts diff --git a/apps/dashboard/src/server/api/routers/dashboard.ts b/apps/ashboard/src/server/api/routers/dashboard.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/dashboard.ts rename to apps/ashboard/src/server/api/routers/dashboard.ts diff --git a/apps/dashboard/src/server/api/routers/event.ts b/apps/ashboard/src/server/api/routers/event.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/event.ts rename to apps/ashboard/src/server/api/routers/event.ts diff --git a/apps/dashboard/src/server/api/routers/onboarding.ts b/apps/ashboard/src/server/api/routers/onboarding.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/onboarding.ts rename to apps/ashboard/src/server/api/routers/onboarding.ts diff --git a/apps/dashboard/src/server/api/routers/organization.ts b/apps/ashboard/src/server/api/routers/organization.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/organization.ts rename to apps/ashboard/src/server/api/routers/organization.ts diff --git a/apps/dashboard/src/server/api/routers/profile.ts b/apps/ashboard/src/server/api/routers/profile.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/profile.ts rename to apps/ashboard/src/server/api/routers/profile.ts diff --git a/apps/dashboard/src/server/api/routers/project.ts b/apps/ashboard/src/server/api/routers/project.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/project.ts rename to apps/ashboard/src/server/api/routers/project.ts diff --git a/apps/dashboard/src/server/api/routers/reference.ts b/apps/ashboard/src/server/api/routers/reference.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/reference.ts rename to apps/ashboard/src/server/api/routers/reference.ts diff --git a/apps/dashboard/src/server/api/routers/report.ts b/apps/ashboard/src/server/api/routers/report.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/report.ts rename to apps/ashboard/src/server/api/routers/report.ts diff --git a/apps/dashboard/src/server/api/routers/share.ts b/apps/ashboard/src/server/api/routers/share.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/share.ts rename to apps/ashboard/src/server/api/routers/share.ts diff --git a/apps/dashboard/src/server/api/routers/user.ts b/apps/ashboard/src/server/api/routers/user.ts similarity index 100% rename from apps/dashboard/src/server/api/routers/user.ts rename to apps/ashboard/src/server/api/routers/user.ts diff --git a/apps/dashboard/src/server/api/trpc.ts b/apps/ashboard/src/server/api/trpc.ts similarity index 100% rename from apps/dashboard/src/server/api/trpc.ts rename to apps/ashboard/src/server/api/trpc.ts diff --git a/apps/dashboard/src/server/pageExists.tsx b/apps/ashboard/src/server/pageExists.tsx similarity index 100% rename from apps/dashboard/src/server/pageExists.tsx rename to apps/ashboard/src/server/pageExists.tsx diff --git a/apps/dashboard/src/styles/globals.css b/apps/ashboard/src/styles/globals.css similarity index 100% rename from apps/dashboard/src/styles/globals.css rename to apps/ashboard/src/styles/globals.css diff --git a/apps/dashboard/src/types/index.ts b/apps/ashboard/src/types/index.ts similarity index 100% rename from apps/dashboard/src/types/index.ts rename to apps/ashboard/src/types/index.ts diff --git a/apps/dashboard/src/utils/clipboard.ts b/apps/ashboard/src/utils/clipboard.ts similarity index 100% rename from apps/dashboard/src/utils/clipboard.ts rename to apps/ashboard/src/utils/clipboard.ts diff --git a/apps/dashboard/src/utils/cn.ts b/apps/ashboard/src/utils/cn.ts similarity index 100% rename from apps/dashboard/src/utils/cn.ts rename to apps/ashboard/src/utils/cn.ts diff --git a/apps/dashboard/src/utils/date.ts b/apps/ashboard/src/utils/date.ts similarity index 100% rename from apps/dashboard/src/utils/date.ts rename to apps/ashboard/src/utils/date.ts diff --git a/apps/dashboard/src/utils/getDbId.ts b/apps/ashboard/src/utils/getDbId.ts similarity index 100% rename from apps/dashboard/src/utils/getDbId.ts rename to apps/ashboard/src/utils/getDbId.ts diff --git a/apps/dashboard/src/utils/math.ts b/apps/ashboard/src/utils/math.ts similarity index 100% rename from apps/dashboard/src/utils/math.ts rename to apps/ashboard/src/utils/math.ts diff --git a/apps/dashboard/src/utils/meta.ts b/apps/ashboard/src/utils/meta.ts similarity index 100% rename from apps/dashboard/src/utils/meta.ts rename to apps/ashboard/src/utils/meta.ts diff --git a/apps/dashboard/src/utils/slug.ts b/apps/ashboard/src/utils/slug.ts similarity index 100% rename from apps/dashboard/src/utils/slug.ts rename to apps/ashboard/src/utils/slug.ts diff --git a/apps/dashboard/src/utils/theme.ts b/apps/ashboard/src/utils/theme.ts similarity index 100% rename from apps/dashboard/src/utils/theme.ts rename to apps/ashboard/src/utils/theme.ts diff --git a/apps/dashboard/src/utils/truncate.ts b/apps/ashboard/src/utils/truncate.ts similarity index 100% rename from apps/dashboard/src/utils/truncate.ts rename to apps/ashboard/src/utils/truncate.ts diff --git a/apps/dashboard/tailwind.config.js b/apps/ashboard/tailwind.config.js similarity index 100% rename from apps/dashboard/tailwind.config.js rename to apps/ashboard/tailwind.config.js diff --git a/apps/dashboard/tsconfig.json b/apps/ashboard/tsconfig.json similarity index 100% rename from apps/dashboard/tsconfig.json rename to apps/ashboard/tsconfig.json