Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pages/landing.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react';
import styles from './landing.module.css';


const Landing = () => (
<div className={styles.container}>
<header className={styles.header}>
<h1>Welcome to Our Landing Page</h1>
</header>
<main className={styles.main}>
<main className="p-4">
<section className={styles.section}>
<h2>About Us</h2>
<p>Description about the company.</p>
Expand All @@ -26,4 +26,4 @@ const Landing = () => (
</div>
);

export default Landing;
export default Landing;
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
4 changes: 4 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

7 changes: 7 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
};