diff --git a/src/components/Button.js b/src/components/Button.js index 5bc75be..4441fd8 100644 --- a/src/components/Button.js +++ b/src/components/Button.js @@ -1,5 +1,3 @@ -import Head from "next/head"; - export default function Button({ text, outline = false, onClick }) { return (
diff --git a/src/components/GridArt.js b/src/components/GridArt.js index a0ccd8f..2a96a81 100644 --- a/src/components/GridArt.js +++ b/src/components/GridArt.js @@ -1,5 +1,3 @@ -import Head from "next/head"; - export default function GridArt() { return (
diff --git a/tailwind.config.js b/tailwind.config.js index 7be6f6b..1bd7424 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,11 +4,4 @@ module.exports = { "./pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}", ], - theme: { - extend: {}, - }, - variants: { - extend: {}, - }, - plugins: [], };