Portfolio website written with Next.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wychdev-nextjs/components/footer.tsx

39 lines
647 B

import styled from 'styled-components'
import Link from "next/link"
const FooterCont = styled.footer`
2 years ago
display: flex;
align-items: left;
2 years ago
justify-content: center;
flex-direction: column;
border-top: var(--border-size) var(--border-type) var(--border-color);
margin-top: auto;
padding: 0 1.2rem;
2 years ago
color: var(--fg-faded);
`
const UList = styled.ul`
display: flex;
flex-direction: row;
list-style: none;
gap: 2rem;
`
const Spacer = styled.div`
flex: 1;
`
const Footer = () => {
return (
<>
<Spacer />
<FooterCont>
<p>&copy; {new Date().getFullYear()} Elias Almqvist</p>
</FooterCont>
</>
)
}
export default Footer