Files
TechRadarAJR/src/components/Footer/Footer.tsx
2024-03-11 10:40:14 +01:00

21 lines
620 B
TypeScript

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() {
const appName = getAppName();
const { footerFootnote } = getMessages();
return (
<div className={styles.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>
);
}