feat: Add footer copyright thing

main
Elias Almqvist 8 months ago
parent eec7e67627
commit 931894c454
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 8
      src/components/layout/index.tsx

@ -9,6 +9,14 @@ const Layout = ({ children }: { children: React.ReactNode }) => {
{children}
</main>
<NavBinds />
<footer className="-mt-16 w-full h-16">
<div className="w-full h-full flex justify-center items-center">
<p className="text-foreground/20 text-sm">
&copy; {new Date().getFullYear()} Elias Almqvist. All rights
reserved.
</p>
</div>
</footer>
</>
);
};

Loading…
Cancel
Save