Skip to content

Commit

Permalink
feat: add footer
Browse files Browse the repository at this point in the history
  • Loading branch information
thraizz committed Dec 17, 2023
1 parent 00b16dc commit 46e6cf5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { EnvelopeIcon } from "@heroicons/react/20/solid";
import { useContext } from "react";
import { Authentication } from "./Authentication";
import { AveragesScatterPlot } from "./AveragesScatterPlot";
Expand Down Expand Up @@ -39,6 +40,12 @@ export const App = () => {
) : (
<Authentication />
)}
<footer className="flex flex-row items-center justify-center h-16 bg-sky-50 px-6 py-4 gap-2">
<p className="text-md">Created by Aron Schüler </p>
<a href="mailto:r10progress@lakur.tech" className="ml-2 flex underline">
<EnvelopeIcon className="w-5 h-5" />
</a>
</footer>
</div>
);
};

0 comments on commit 46e6cf5

Please sign in to comment.