import NextLink from "next/link"; import { styled } from "../../lib/styles/stitches.config"; import type { ComponentProps } from "react"; import type { LinkProps as NextLinkProps } from "next/link"; const StyledLink = styled(NextLink, { color: "$link", textDecoration: "none", variants: { underline: { // fancy animated link underline effect (on by default) true: { // sets psuedo linear-gradient() for the underline's color; see stitches config for the weird calculation behind // the local `$$underline` variable. setUnderlineVar: { color: "$colors$linkUnderline" }, backgroundImage: `linear-gradient($$underline, $$underline)`, backgroundPosition: "0% 100%", backgroundRepeat: "no-repeat", backgroundSize: "0% $underline", paddingBottom: "0.2rem", "@media (prefers-reduced-motion: no-preference)": { transition: "background-size 0.25s ease-in-out", }, "&:hover": { backgroundSize: "100% $underline", }, }, false: {}, }, }, }); export type LinkProps = Omit, "href"> & NextLinkProps & { underline?: boolean; openInNewTab?: boolean; }; const Link = ({ href, rel, target, prefetch = false, underline = true, openInNewTab, ...rest }: LinkProps) => { // This component auto-detects whether or not this link should open in the same window (the default for internal // links) or a new tab (the default for external links). Defaults can be overridden with `openInNewTab={true}`. const isExternal = typeof href === "string" ? href.charAt(0) !== "/" && href.charAt(0) !== "#" : false; if (openInNewTab || isExternal) { return ( ); } // If link is to an internal page, simply pass *everything* along as-is to next/link. return ; }; export default Link;