Skip to content

Commit

Permalink
minor features
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickolausen committed Dec 28, 2024
1 parent 0e25aae commit 199851c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/LayoutComponents/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
function Footer()
{
return <>
<footer className={"mt-20 flex justify-center content-center p-20 text-center text-primary bg-[--nav-bg]"}>
<footer className={"mt-20 flex flex-col justify-center content-center p-20 text-center text-primary bg-[--nav-bg]"}>
<span>Handmade with <i className='fa fa-heart text-[--accent-color]'></i> by <a className='text-[--accent-color]' href='https://github.com/Nickolausen'>Nicholas Magi</a></span>
<span className="text-secondary text-xs pt-2">Last update deployed on: { document.lastModified }</span>
</footer>
</>
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/LayoutComponents/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function Navbar()
]

return (
<nav className="flex flex-row justify-center w-screen fixed z-10 bg-[--nav-bg] text-primary">
<nav className="flex flex-row justify-center w-screen fixed z-10 bg-[--nav-bg] text-primary py-3">
<div className="w-screen lg:w-auto max-w-screen-xl flex flex-wrap items-center justify-between p-4">
<a href="#home" className="exclude flex items-center space-x-3 rtl:space-x-reverse pe-auto lg:pe-20">
<span className="self-center text-4xl whitespace-nowrap">
Expand Down

0 comments on commit 199851c

Please sign in to comment.