From 02036f7ef483045ba5706d0c329fde52c26d632a Mon Sep 17 00:00:00 2001 From: Omar Oughriss Date: Mon, 20 Oct 2025 11:33:36 +0200 Subject: [PATCH] Use the correct css file --- app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/layout.tsx b/app/layout.tsx index 256bff6..fd65a7f 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,6 @@ import type { Metadata } from 'next' import { Inter } from 'next/font/google' -import '../styles/globals.css' +import './globals.css' const inter = Inter({ subsets: ['latin'] })