diff --git a/pages/landing.module.css b/pages/landing.module.css index a7496b4..062ab63 100644 --- a/pages/landing.module.css +++ b/pages/landing.module.css @@ -1,19 +1,7 @@ -.container { - font-family: Arial, sans-serif; - text-align: center; - padding: 20px; -} - -.header { - background-color: #f8f9fa; - padding: 20px; -} - -.section { margin: 20px 0; } .footer { background-color: #f8f9fa; padding: 10px; -} \ No newline at end of file +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..33ad091 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/styles/globals.css b/styles/globals.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/styles/globals.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..d7c6202 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,7 @@ +module.exports = { + content: ['./pages/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}'], + theme: { + extend: {}, + }, + plugins: [], +}