diff --git a/src/components/Card.tsx b/src/components/Card.tsx index b5826b2..1b9a15c 100644 --- a/src/components/Card.tsx +++ b/src/components/Card.tsx @@ -2,7 +2,7 @@ import React from "react"; import Image from "next/image"; import styled from "styled-components"; import colors from "@theme/colors"; -import { Link } from "@components/index"; +import Link from "@components/Link"; import breakpoints from "@theme/breakpoints"; interface WrappedCardProps { diff --git a/src/components/PageLink.tsx b/src/components/PageLink.tsx index f5e813c..5708ae7 100644 --- a/src/components/PageLink.tsx +++ b/src/components/PageLink.tsx @@ -1,7 +1,7 @@ import React from "react"; import styled from "styled-components"; import colors from "@theme/colors"; -import { Link } from "@components/index"; +import Link from "@components/Link"; interface PageLinkProps { to: string; diff --git a/src/components/Sections/CTASection.tsx b/src/components/Sections/CTASection.tsx index c160cd2..c13dd85 100644 --- a/src/components/Sections/CTASection.tsx +++ b/src/components/Sections/CTASection.tsx @@ -1,7 +1,7 @@ import React from "react"; import styled from "styled-components"; import colors from "@theme/colors"; -import { Link } from "@components/index"; +import Link from "@components/Link"; type Colors = "orange1" | "lightBlue" | "darkBlue" | "blue1" | "lightTurquoise" | "sik100Blue";