diff --git a/pages/index.tsx b/pages/index.tsx index f77b8f4d2..b75500526 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -2,7 +2,12 @@ import React from 'react'; import { NextPage } from 'next'; const Index: NextPage = () => { - return
Overseerr!
; + return ( +
+

Overseer

+

Here is some text

+
+ ); }; export default Index; diff --git a/postcss.config.js b/postcss.config.js index bf3d23f26..7129bb14f 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,3 +1,3 @@ module.exports = { - plugins: ["tailwindcss", "postcss-preset-env"], + plugins: ['tailwindcss', 'postcss-preset-env'], }; diff --git a/styles/globals.css b/styles/globals.css index a90f0749c..b5c61c956 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,4 +1,3 @@ @tailwind base; @tailwind components; @tailwind utilities; -