functinal state along with the first post

This commit is contained in:
Osman Faruk Bayram 2024-10-27 03:13:21 +03:00
parent 78cfe1b4f5
commit fa04a9ceef
9 changed files with 712 additions and 50 deletions

View file

@ -3,7 +3,28 @@
<header>
<nav>
<a href="/" class="header-osbm">OSBM</a>
<a href="/about" class="header-about">About</a>
<a href="/blog" class="header-blog">Blog</a>
</nav>
</header>
</header>
<style>
nav {
display: flex;
justify-content: space-between;
padding: 1rem;
}
.header-osbm {
font-size: 1.5rem;
font-weight: bold;
}
.header-blog {
font-size: 1.5rem;
font-weight: bold;
}
a {
text-decoration: none;
}
</style>