feat: start page footer, general styling

This commit is contained in:
theoleuthardt 2025-02-08 14:13:04 +01:00
parent f7b0538ac7
commit 39be7de9c0
3 changed files with 43 additions and 6 deletions

30
src/components/Footer.tsx Normal file
View file

@ -0,0 +1,30 @@
import React from "react";
interface NavProps {
className?: string;
}
const navbar = (props: NavProps) => {
return (
<div className={`h-18 w-full p-3 ` + props.className}>
<div className="text-md text-white font-bold flex flex-row items-center justify-center">
<text>made by</text>
<a
className="mx-2 hover:underline hover:text-blue-400"
href="https://github.com/AuriomTex"
>
Domi
</a>
<text>and</text>
<a
className="mx-2 hover:underline hover:text-blue-400"
href="https://github.com/theoleuthardt"
>
Theo.
</a>
</div>
</div>
);
};
export default navbar;