chore: add footer
This commit is contained in:
committed by
Mathias Schopmans
parent
57cdb91ec7
commit
40549cdb80
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user