feat: navbar and main components added

This commit is contained in:
Smigz 2024-10-11 16:38:38 -04:00
parent d581ed19e6
commit aa7d7e8656
20 changed files with 4629 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import styles from "./main.module.css";
export default function Main(props) {
return (
<main>
<div>
<h1 className={styles.mainHeading}>We help you skill up faster</h1>
<p>
Trying to pivot into tech? There&apos;s a lot to figure out. We can
help you navigate the path. Fast results and guaranteed growth.
</p>
<button>BOOK INTRO CALL</button>
</div>
</main>
);
}

View file

@ -0,0 +1,3 @@
main {
padding: 0 1rem;
}

View file

@ -0,0 +1,20 @@
import styles from "./navbar.module.css";
export default function Navbar(props) {
return (
<nav className={styles.nav}>
<h1>Smig.Tech</h1>
<Nav />
<button>I&apos;m Ready</button>
</nav>
);
}
function Nav() {
return (
<ul className={styles.nav}>
<li>home</li>
<li>shop</li>
</ul>
);
}

View file

@ -0,0 +1,11 @@
nav {
display: flex;
justify-content: space-between;
padding: 0 1rem;
}
.nav {
display: flex;
list-style-type: none;
gap: 20px;
}