feat: add social links in footer

This commit is contained in:
Mathias Schopmans
2024-03-01 10:33:11 +01:00
committed by Mathias Schopmans
parent 0eb6997efa
commit 5ef0f07822
13 changed files with 164 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
import logo from "../../../public/logo.svg";
import styles from "./Footer.module.css";
import { SocialLinks } from "@/components/SocialLinks/SocialLinks";
import { getAppName, getMessages } from "@/lib/data";
export function Footer() {
@@ -12,6 +13,7 @@ export function Footer() {
<div className={styles.branding}>
<img src={logo.src} className={styles.logo} alt={appName} />
<p className={styles.description}>{footerFootnote}</p>
<SocialLinks className={styles.socialLinks} />
</div>
</div>
);