add footer to the layout
All checks were successful
Build and publish the docker image / build (push) Successful in 1m20s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-01-20 00:31:02 +03:00
parent 19a74ec438
commit d9c37b7f8f
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D
2 changed files with 3 additions and 1 deletions

View File

@ -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) => {
<main id='main' className={`main ${className}`}>
{children}
</main>
<Footer />
</>
);
};

View File

@ -2,7 +2,7 @@
.footer {
background: var(--clr-bg-muted);
padding: var(--spacer-4);
padding: var(--spacer-3);
display: flex;
flex-direction: column;