diff --git a/components/activelink.tsx b/components/activelink.tsx index e678488..c4cf33b 100644 --- a/components/activelink.tsx +++ b/components/activelink.tsx @@ -7,7 +7,7 @@ const ALink = styled.a<{active?: boolean}>` border-bottom: 1px solid transparent; ${({active}) => active && css` color: var(--fg) !important; - border-bottom-color: currentColor; + /*border-bottom-color: currentColor;*/ `} ` diff --git a/components/footer.tsx b/components/footer.tsx index e894b35..da8f60f 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -3,10 +3,10 @@ import Link from "next/link" const FooterCont = styled.footer` display: flex; - align-items: left; + align-items: center; justify-content: center; flex-direction: column; - border-top: var(--border-size) var(--border-type) var(--border-color); + /*border-top: var(--border-size) var(--border-type) var(--border-color);*/ margin-top: auto; padding: 0 1.2rem; @@ -29,7 +29,7 @@ const Footer = () => { <> -

© {new Date().getFullYear()} Elias Almqvist

+

© Copyright {new Date().getFullYear()}

) diff --git a/components/iconlink.tsx b/components/iconlink.tsx new file mode 100644 index 0000000..33c32be --- /dev/null +++ b/components/iconlink.tsx @@ -0,0 +1,16 @@ +import {IconDefinition} from "@fortawesome/fontawesome-svg-core" +import {FontAwesomeIcon} from "@fortawesome/react-fontawesome" +import styled from "styled-components" + +const ILink = styled.a` + font-size: 24px; + margin: 0 .4rem; +` + +const IconLink = ({href, icon, target, rel}: {href: string, icon: IconDefinition, target: string, rel: string}) => { + return ( + + ) +} + +export default IconLink diff --git a/components/layout.tsx b/components/layout.tsx index 2445dcf..82a0c1b 100644 --- a/components/layout.tsx +++ b/components/layout.tsx @@ -9,7 +9,7 @@ const Layout = ({children}: {children: ReactNode}) => { wych.dev -
+ {/*
*/}
{children}