├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── (dashboard) │ │ ├── layout.tsx │ │ ├── reports │ │ │ ├── _components │ │ │ │ ├── FilterAmount.tsx │ │ │ │ ├── FilterCountry.tsx │ │ │ │ ├── FilterDate.tsx │ │ │ │ ├── FilterExpenseStatus.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── TransactionChart.tsx │ │ │ │ └── dateRanges.ts │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── transactions │ │ │ ├── _components │ │ │ ├── Columns.tsx │ │ │ ├── DataTable.tsx │ │ │ ├── DataTableColumnHeader.tsx │ │ │ ├── DataTableDrawer.tsx │ │ │ ├── DataTableDrawerFeed.tsx │ │ │ ├── DataTablePagination.tsx │ │ │ ├── TableBulkEditor.tsx │ │ │ └── TanstackTable.d.ts │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── not-found.tsx │ ├── onboarding │ │ ├── employees │ │ │ └── page.tsx │ │ ├── infrastructure │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── products │ │ │ └── page.tsx │ ├── settings │ │ ├── audit │ │ │ ├── _components │ │ │ │ ├── Approvers.tsx │ │ │ │ ├── AuditRules.tsx │ │ │ │ └── TransactionPolicy.tsx │ │ │ └── page.tsx │ │ ├── billing │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── users │ │ │ └── page.tsx │ └── siteConfig.ts ├── components │ ├── Accordion.tsx │ ├── AreaChart.tsx │ ├── Badge.tsx │ ├── BarChart.tsx │ ├── BarChartVariant.tsx │ ├── BarList.tsx │ ├── Button.tsx │ ├── Calendar.tsx │ ├── Card.tsx │ ├── CategoryBar.tsx │ ├── Checkbox.tsx │ ├── CommandBar.tsx │ ├── DatePicker.tsx │ ├── Dialog.tsx │ ├── Divider.tsx │ ├── Drawer.tsx │ ├── DropdownMenu.tsx │ ├── Input.tsx │ ├── KeywordInput.tsx │ ├── Label.tsx │ ├── Popover.tsx │ ├── ProgressBar.tsx │ ├── RadioCardGroup.tsx │ ├── RadioGroup.tsx │ ├── Select.tsx │ ├── Slider.tsx │ ├── Switch.tsx │ ├── TabNavigation.tsx │ ├── Table.tsx │ ├── Tabs.tsx │ ├── Textarea.tsx │ ├── Tooltip.tsx │ └── ui │ │ ├── Logo.tsx │ │ └── navigation │ │ ├── DropdownUserProfile.tsx │ │ ├── MobileSidebar.tsx │ │ ├── Sidebar.tsx │ │ └── UserProfile.tsx ├── data │ ├── data.ts │ ├── generateData.ts │ ├── report.ts │ ├── schema.ts │ └── transactions.ts └── lib │ ├── chartUtils.ts │ ├── useOnWindowResize.tsx │ ├── useScroll.ts │ └── utils.ts ├── tailwind.config.ts ├── tsconfig.json └── tsconfig.scripts.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/_components/FilterAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/_components/FilterAmount.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/_components/FilterCountry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/_components/FilterCountry.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/_components/FilterDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/_components/FilterDate.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/_components/FilterExpenseStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/_components/FilterExpenseStatus.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/_components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/_components/Header.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/_components/TransactionChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/_components/TransactionChart.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/_components/dateRanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/_components/dateRanges.ts -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/reports/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/reports/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/_components/Columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/_components/Columns.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/_components/DataTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/_components/DataTable.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/_components/DataTableColumnHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/_components/DataTableColumnHeader.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/_components/DataTableDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/_components/DataTableDrawer.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/_components/DataTableDrawerFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/_components/DataTableDrawerFeed.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/_components/DataTablePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/_components/DataTablePagination.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/_components/TableBulkEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/_components/TableBulkEditor.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/_components/TanstackTable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/_components/TanstackTable.d.ts -------------------------------------------------------------------------------- /src/app/(dashboard)/transactions/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/(dashboard)/transactions/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/login/page.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/onboarding/employees/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/onboarding/employees/page.tsx -------------------------------------------------------------------------------- /src/app/onboarding/infrastructure/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/onboarding/infrastructure/page.tsx -------------------------------------------------------------------------------- /src/app/onboarding/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/onboarding/layout.tsx -------------------------------------------------------------------------------- /src/app/onboarding/products/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/onboarding/products/page.tsx -------------------------------------------------------------------------------- /src/app/settings/audit/_components/Approvers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/settings/audit/_components/Approvers.tsx -------------------------------------------------------------------------------- /src/app/settings/audit/_components/AuditRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/settings/audit/_components/AuditRules.tsx -------------------------------------------------------------------------------- /src/app/settings/audit/_components/TransactionPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/settings/audit/_components/TransactionPolicy.tsx -------------------------------------------------------------------------------- /src/app/settings/audit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/settings/audit/page.tsx -------------------------------------------------------------------------------- /src/app/settings/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/settings/billing/page.tsx -------------------------------------------------------------------------------- /src/app/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/settings/layout.tsx -------------------------------------------------------------------------------- /src/app/settings/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/settings/users/page.tsx -------------------------------------------------------------------------------- /src/app/siteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/app/siteConfig.ts -------------------------------------------------------------------------------- /src/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Accordion.tsx -------------------------------------------------------------------------------- /src/components/AreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/AreaChart.tsx -------------------------------------------------------------------------------- /src/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Badge.tsx -------------------------------------------------------------------------------- /src/components/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/BarChart.tsx -------------------------------------------------------------------------------- /src/components/BarChartVariant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/BarChartVariant.tsx -------------------------------------------------------------------------------- /src/components/BarList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/BarList.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Calendar.tsx -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/CategoryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/CategoryBar.tsx -------------------------------------------------------------------------------- /src/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/CommandBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/CommandBar.tsx -------------------------------------------------------------------------------- /src/components/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/DatePicker.tsx -------------------------------------------------------------------------------- /src/components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Dialog.tsx -------------------------------------------------------------------------------- /src/components/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Divider.tsx -------------------------------------------------------------------------------- /src/components/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Drawer.tsx -------------------------------------------------------------------------------- /src/components/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/DropdownMenu.tsx -------------------------------------------------------------------------------- /src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Input.tsx -------------------------------------------------------------------------------- /src/components/KeywordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/KeywordInput.tsx -------------------------------------------------------------------------------- /src/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Label.tsx -------------------------------------------------------------------------------- /src/components/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Popover.tsx -------------------------------------------------------------------------------- /src/components/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/RadioCardGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/RadioCardGroup.tsx -------------------------------------------------------------------------------- /src/components/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/RadioGroup.tsx -------------------------------------------------------------------------------- /src/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Select.tsx -------------------------------------------------------------------------------- /src/components/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Slider.tsx -------------------------------------------------------------------------------- /src/components/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Switch.tsx -------------------------------------------------------------------------------- /src/components/TabNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/TabNavigation.tsx -------------------------------------------------------------------------------- /src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Table.tsx -------------------------------------------------------------------------------- /src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Tabs.tsx -------------------------------------------------------------------------------- /src/components/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Textarea.tsx -------------------------------------------------------------------------------- /src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/ui/Logo.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation/DropdownUserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/ui/navigation/DropdownUserProfile.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation/MobileSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/ui/navigation/MobileSidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/ui/navigation/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/components/ui/navigation/UserProfile.tsx -------------------------------------------------------------------------------- /src/data/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/data/data.ts -------------------------------------------------------------------------------- /src/data/generateData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/data/generateData.ts -------------------------------------------------------------------------------- /src/data/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/data/report.ts -------------------------------------------------------------------------------- /src/data/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/data/schema.ts -------------------------------------------------------------------------------- /src/data/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/data/transactions.ts -------------------------------------------------------------------------------- /src/lib/chartUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/lib/chartUtils.ts -------------------------------------------------------------------------------- /src/lib/useOnWindowResize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/lib/useOnWindowResize.tsx -------------------------------------------------------------------------------- /src/lib/useScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/lib/useScroll.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tremorlabs/template-insights/HEAD/tsconfig.scripts.json --------------------------------------------------------------------------------