feat: Footer widget with email link and CV download, added to root layout

This commit is contained in:
Ilia Mashkov
2026-05-18 14:15:25 +03:00
parent 0552a2a8e5
commit 7e542597d0
5 changed files with 77 additions and 1 deletions
+5 -1
View File
@@ -1,5 +1,6 @@
import type { Metadata } from 'next';
import { fraunces, publicSans } from '$shared/lib';
import { Footer } from '$widgets/Footer';
import './globals.css';
export const metadata: Metadata = {
@@ -13,7 +14,10 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className={`${fraunces.variable} ${publicSans.variable}`}>{children}</body>
<body className={`${fraunces.variable} ${publicSans.variable}`}>
{children}
<Footer />
</body>
</html>
);
}