From 123780d17b9c2f6f054be2268526bb74509737fd Mon Sep 17 00:00:00 2001 From: Cullen Lee Date: Wed, 3 Jul 2024 10:11:29 -0700 Subject: [PATCH] chore: Update import paths for CSS files --- app/{ => (root)}/layout.tsx | 2 +- app/dashboard/layout.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename app/{ => (root)}/layout.tsx (98%) diff --git a/app/layout.tsx b/app/(root)/layout.tsx similarity index 98% rename from app/layout.tsx rename to app/(root)/layout.tsx index a52c20d..34975d3 100644 --- a/app/layout.tsx +++ b/app/(root)/layout.tsx @@ -1,4 +1,4 @@ -import './globals.css'; +import '../globals.css'; import { Analytics } from '@vercel/analytics/react'; import { SessionProvider } from 'next-auth/react'; import { SpeedInsights } from "@vercel/speed-insights/next" diff --git a/app/dashboard/layout.tsx b/app/dashboard/layout.tsx index 18c69b2..14498d4 100644 --- a/app/dashboard/layout.tsx +++ b/app/dashboard/layout.tsx @@ -1,4 +1,4 @@ -import '../(root)/globals.css'; +import '../globals.css'; export const metadata = { title: 'Next.js', description: 'Generated by Next.js',