From 07ea11662f1e034280d1816b4bf12496f1633e73 Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 00:01:05 +0000 Subject: [PATCH 1/4] Update postcss.config.js. --- postcss.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 postcss.config.js diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..12a703d --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; From 3e43adc5c29b92f2085f45c7ed73f7cd62818325 Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 00:01:10 +0000 Subject: [PATCH 2/4] Update tailwind.config.js. --- tailwind.config.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tailwind.config.js diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..4403510 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,7 @@ +module.exports = { + content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"], + theme: { + extend: {}, + }, + plugins: [], +}; From 9b6eac875f55baeb073ea3ec721271102dda4c62 Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 00:01:18 +0000 Subject: [PATCH 3/4] Update styles/globals.css. --- styles/globals.css | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 styles/globals.css diff --git a/styles/globals.css b/styles/globals.css new file mode 100644 index 0000000..a90f074 --- /dev/null +++ b/styles/globals.css @@ -0,0 +1,4 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + From a72e7c0b6fa9ae6d6b34edf881a9edacc4227447 Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 00:01:24 +0000 Subject: [PATCH 4/4] Update pages/landing.js. --- pages/landing.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/landing.js b/pages/landing.js index 409b0f8..4d479ee 100644 --- a/pages/landing.js +++ b/pages/landing.js @@ -1,12 +1,12 @@ import React from 'react'; -import styles from './landing.module.css'; + const Landing = () => (

Welcome to Our Landing Page

-
+

About Us

Description about the company.

@@ -26,4 +26,4 @@ const Landing = () => (
); -export default Landing; \ No newline at end of file +export default Landing;