add footer to the layout
All checks were successful
Build and publish the docker image / build (push) Successful in 1m20s
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:
parent
19a74ec438
commit
d9c37b7f8f
@ -1,4 +1,5 @@
|
|||||||
import { ReactNode } from 'react';
|
import { ReactNode } from 'react';
|
||||||
|
import Footer from './Footer';
|
||||||
import Header from './Header';
|
import Header from './Header';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
@ -15,6 +16,7 @@ const Layout = ({ full, children, className, originalPath }: Props) => {
|
|||||||
<main id='main' className={`main ${className}`}>
|
<main id='main' className={`main ${className}`}>
|
||||||
{children}
|
{children}
|
||||||
</main>
|
</main>
|
||||||
|
<Footer />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
background: var(--clr-bg-muted);
|
background: var(--clr-bg-muted);
|
||||||
padding: var(--spacer-4);
|
padding: var(--spacer-3);
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user