added project buttons

This commit is contained in:
2025-01-16 00:56:56 +11:00
parent 1e882a7430
commit 41fa8311f1
3 changed files with 30 additions and 0 deletions

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5502
}

View File

@@ -61,6 +61,11 @@
<i class="fa-brands fa-bluesky"></i> <i class="fa-brands fa-bluesky"></i>
</a> </a>
</div> </div>
<div class="project-links">
<a href="https://mates.dev" target="_blank">MatesMedia</a>
<a href="https://lit.ruv.wtf/materials" target="_blank">UE Material Snippets</a>
</div>
</header> </header>
<div id="posts"></div> <div id="posts"></div>

View File

@@ -233,3 +233,25 @@ h1:hover {
opacity: 1; opacity: 1;
} }
.project-links {
margin-top: 2rem;
font-size: 1rem;
}
.project-links a {
display: inline-block;
margin: 0.5rem 0;
padding: 0.5rem 1rem;
background: white;
color: #242424;
text-decoration: none;
font-weight: bold;
border-radius: 20px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.project-links a:hover {
background: #2563eb;
color: white;
}