From 7e542597d08723b5c26a4a5d2995463fc47d093a Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Mon, 18 May 2026 14:15:25 +0300 Subject: [PATCH] feat: Footer widget with email link and CV download, added to root layout --- app/layout.tsx | 6 ++- src/widgets/Footer/index.ts | 1 + src/widgets/Footer/ui/Footer/Footer.test.tsx | 47 ++++++++++++++++++++ src/widgets/Footer/ui/Footer/Footer.tsx | 23 ++++++++++ src/widgets/index.ts | 1 + 5 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 src/widgets/Footer/index.ts create mode 100644 src/widgets/Footer/ui/Footer/Footer.test.tsx create mode 100644 src/widgets/Footer/ui/Footer/Footer.tsx diff --git a/app/layout.tsx b/app/layout.tsx index 6ae4ca5..f3b78ea 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -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 ( - {children} + + {children} +