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;