From d9c37b7f8f8b65d3951ec4a3cd4a10cf8dc94efb Mon Sep 17 00:00:00 2001 From: ngn Date: Mon, 20 Jan 2025 00:31:02 +0300 Subject: [PATCH] add footer to the layout Signed-off-by: ngn --- src/components/layout/index.tsx | 2 ++ src/styles/modules/layout/footer.module.scss | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/layout/index.tsx b/src/components/layout/index.tsx index 4c50383..d26e019 100644 --- a/src/components/layout/index.tsx +++ b/src/components/layout/index.tsx @@ -1,4 +1,5 @@ import { ReactNode } from 'react'; +import Footer from './Footer'; import Header from './Header'; type Props = { @@ -15,6 +16,7 @@ const Layout = ({ full, children, className, originalPath }: Props) => {
{children}
+