feat(dioxus): added all links to navbar, intro finished, and new pages set up. TODO: final img sizing and projects assignment

This commit is contained in:
2025-04-25 16:07:10 -06:00
parent 8ab01ca725
commit 03082a1904
7 changed files with 104 additions and 25 deletions

View File

@ -1,16 +1,16 @@
#navbar {
display: flex;
flex-direction: row;
display: flex;
flex-direction: row;
}
#navbar a {
color: #ffffff;
margin-right: 20px;
text-decoration: none;
transition: color 0.2s ease;
color: #ffffff;
margin-right: 20px;
text-decoration: none;
transition: color 0.2s ease;
}
#navbar a:hover {
cursor: pointer;
color: #91a4d2;
}
cursor: pointer;
color: #91a4d2;
}