From cf200b36615d622e2d92821f2195c6061a90e8e2 Mon Sep 17 00:00:00 2001 From: Fayorg Date: Tue, 5 Dec 2023 20:55:15 +0100 Subject: [PATCH] fix: using tailwindcss --- app/layout.tsx | 1 + styles/global.css | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 styles/global.css diff --git a/app/layout.tsx b/app/layout.tsx index 6ab9985..dd3b95c 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,6 @@ import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; +import '@styles/global.css'; const inter = Inter({ subsets: ['latin'] }); diff --git a/styles/global.css b/styles/global.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/styles/global.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities;