diff --git a/components/footer.tsx b/components/footer.tsx index e21a360..0a45911 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -1,5 +1,5 @@ -import Link from "next/link" import styled from 'styled-components' +import Link from "next/link" const Footer = styled.footer` display: flex; @@ -20,14 +20,26 @@ const UList = styled.ul` gap: 2rem; ` +const Spacer = styled.div` + flex: 1; +` + export default () => { return ( - + <> + + + ) } diff --git a/components/layout.tsx b/components/layout.tsx index e585784..446a2f3 100644 --- a/components/layout.tsx +++ b/components/layout.tsx @@ -5,7 +5,7 @@ import {ReactNode} from 'react' export default ({children}: {children: ReactNode}) => { return <>
-
{children}
+
{children}