mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
feat: startpage done, needed components implemented, first tool began
This commit is contained in:
parent
6da16f3858
commit
448065c715
6 changed files with 83 additions and 27 deletions
|
|
@ -1,21 +1,21 @@
|
|||
import React from "react";
|
||||
|
||||
interface NavProps {
|
||||
interface FooterProps {
|
||||
className?: string;
|
||||
}
|
||||
|
||||
const navbar = (props: NavProps) => {
|
||||
const Footer = (props: FooterProps) => {
|
||||
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>
|
||||
<p>made by</p>
|
||||
<a
|
||||
className="mx-2 hover:underline hover:text-blue-400"
|
||||
href="https://github.com/AuriomTex"
|
||||
>
|
||||
Domi
|
||||
</a>
|
||||
<text>and</text>
|
||||
<p>and</p>
|
||||
<a
|
||||
className="mx-2 hover:underline hover:text-blue-400"
|
||||
href="https://github.com/theoleuthardt"
|
||||
|
|
@ -27,4 +27,4 @@ const navbar = (props: NavProps) => {
|
|||
);
|
||||
};
|
||||
|
||||
export default navbar;
|
||||
export default Footer;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue