initial copy and structuring

This commit is contained in:
Jessi McKissick
2026-05-26 21:08:24 -07:00
commit 41e1ab64fc
20 changed files with 5050 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
export default function Header(){
return(
<header>
<h1 id="title">J.M. Technical Services</h1>
<nav>
<ul>
<li className="navitem">HOME</li>
<li className="navitem">ABOUT</li>
<li className="navitem">SERVICES</li>
</ul>
</nav>
</header>
)
}