diff options
| author | Kinfe123 <[email protected]> | 2024-06-26 01:18:57 +0300 |
|---|---|---|
| committer | Kinfe123 <[email protected]> | 2024-06-26 01:18:57 +0300 |
| commit | 78fbaf14f0b5ee9cbcb5c75441d954eba1715132 (patch) | |
| tree | 2a65aeaf6edb56dc12b6bbc5834bff8d7526de4f | |
| parent | fix: minor padding and alignment leaks (diff) | |
| download | archived-supermemory-78fbaf14f0b5ee9cbcb5c75441d954eba1715132.tar.xz archived-supermemory-78fbaf14f0b5ee9cbcb5c75441d954eba1715132.zip | |
fix: prod issue
| -rw-r--r-- | apps/web/app/(landing)/page.tsx | 2 | ||||
| -rw-r--r-- | apps/web/app/layout.tsx | 4 | ||||
| -rw-r--r-- | packages/tailwind-config/package.json | 1 |
3 files changed, 3 insertions, 4 deletions
diff --git a/apps/web/app/(landing)/page.tsx b/apps/web/app/(landing)/page.tsx index 8a9ab5d1..740eef3e 100644 --- a/apps/web/app/(landing)/page.tsx +++ b/apps/web/app/(landing)/page.tsx @@ -5,7 +5,7 @@ import Cta from "./Cta"; import { Toaster } from "@repo/ui/shadcn/toaster"; import Features from "./Features"; import Footer from "./footer"; -import { auth } from "../helpers/server/auth"; +import { auth } from "@/server/auth"; import Services from "./Features/index"; import { Showcases } from "./Showcase"; import BackgroundPlus from "./GridPatterns/PlusGrid"; diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index 4d182799..9af77837 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -74,12 +74,10 @@ export default function RootLayout({ className={cn( `${inter.className} dark`, GeistMono.variable, - GeistSans.variable + GeistSans.variable, )} > {children} - <body className={`${inter.className} dark`}> - {children} <Toaster /> </body> </html> diff --git a/packages/tailwind-config/package.json b/packages/tailwind-config/package.json index c3880c2d..fc1fa8b3 100644 --- a/packages/tailwind-config/package.json +++ b/packages/tailwind-config/package.json @@ -11,6 +11,7 @@ "clsx": "^2.1.1", "lucide-react": "^0.378.0", "tailwind-merge": "^2.3.0", + "tailwind-scrollbar": "^3.1.0", "tailwindcss-animate": "^1.0.7" } } |