From 4fa8df20aced44b731d36077fce22d2054a61261 Mon Sep 17 00:00:00 2001 From: Hydroxycarbamide Date: Mon, 21 Nov 2022 10:51:39 +0100 Subject: [PATCH] Fix some styles and empty page --- app/contact/page.tsx | 3 +++ app/layout.tsx | 2 +- next.config.js | 2 +- postcss.config.js | 6 ++++++ 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 postcss.config.js diff --git a/app/contact/page.tsx b/app/contact/page.tsx index e69de29..e5575ab 100644 --- a/app/contact/page.tsx +++ b/app/contact/page.tsx @@ -0,0 +1,3 @@ +export default function Contact(): JSX.Element { + return <> +} diff --git a/app/layout.tsx b/app/layout.tsx index 2b530cc..3db8ced 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,4 @@ -import Link from "next/link" +import Link from 'next/link' export default function RootLayout({ children diff --git a/next.config.js b/next.config.js index 04e0c84..451b163 100644 --- a/next.config.js +++ b/next.config.js @@ -4,7 +4,7 @@ const nextConfig = { appDir: true }, reactStrictMode: true, - swcMinify: true, + swcMinify: true } module.exports = nextConfig diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..85f717c --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {} + } +}