mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
feat: start page footer, general styling
This commit is contained in:
parent
f7b0538ac7
commit
39be7de9c0
3 changed files with 43 additions and 6 deletions
30
src/components/Footer.tsx
Normal file
30
src/components/Footer.tsx
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue