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.
|
|
|
import styled from 'styled-components'
|
|
|
|
// import Link from "next/link"
|
|
|
|
|
|
|
|
const FooterCont = styled.footer`
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0 1.2rem;
|
|
|
|
|
|
|
|
color: var(--fg-faded);
|
|
|
|
`
|
|
|
|
|
|
|
|
// const UList = styled.ul`
|
|
|
|
// display: flex;
|
|
|
|
// flex-direction: row;
|
|
|
|
// list-style: none;
|
|
|
|
// gap: 2rem;
|
|
|
|
// `
|
|
|
|
|
|
|
|
export const Spacer = styled.div`
|
|
|
|
flex: 1;
|
|
|
|
`
|
|
|
|
|
|
|
|
const Footer = () => {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<FooterCont>
|
|
|
|
<p>© Copyright {new Date().getFullYear()}</p>
|
|
|
|
</FooterCont>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Footer
|