chore: add footer

This commit is contained in:
Mathias Schopmans
2024-02-12 15:07:48 +01:00
committed by Mathias Schopmans
parent 57cdb91ec7
commit 40549cdb80
3 changed files with 42 additions and 4 deletions

View File

@@ -1,9 +1,19 @@
import styles from "Footer.module.css";
import logo from "../../../public/logo.svg";
import styles from "./Footer.module.css";
import { getAppName } from "@/lib/config";
import { getMessages } from "@/lib/data";
export function Footer() {
const appName = getAppName();
const { footerFootnote } = getMessages();
return (
<div className={styles.footer}>
<div className={styles.branding}></div>
<div className={styles.branding}>
<img src={logo.src} className={styles.logo} alt={appName} />
<p className={styles.description}>{footerFootnote}</p>
</div>
</div>
);
}