diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/augurymetal.com.iml b/.idea/augurymetal.com.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/augurymetal.com.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/components/Card.tsx b/components/Card.tsx index 143681e..c2e6618 100644 --- a/components/Card.tsx +++ b/components/Card.tsx @@ -1,5 +1,5 @@ import Image from './Image' -import Link from './Link' +import Link from 'next/link' const Card = ({ title, description, imgSrc, href }) => (
diff --git a/components/Footer.tsx b/components/Footer.tsx index efe49a6..7aa2c80 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -1,4 +1,4 @@ -import Link from './Link' +import Link from 'next/link' import siteMetadata from '@/data/siteMetadata' import SocialIcon from '@/components/social-icons' diff --git a/components/LayoutWrapper.tsx b/components/LayoutWrapper.tsx index 689f74b..7c8567d 100644 --- a/components/LayoutWrapper.tsx +++ b/components/LayoutWrapper.tsx @@ -1,6 +1,6 @@ import Image from '@/components/Image' import headerNavLinks from '@/data/headerNavLinks' -import Link from './Link' +import Link from 'next/link' import SectionContainer from './SectionContainer' import Footer from './Footer' import MobileNav from './MobileNav' @@ -17,8 +17,8 @@ const LayoutWrapper = ({ children }: Props) => { header banner
diff --git a/components/Link.tsx b/components/Link.tsx deleted file mode 100644 index 1c46655..0000000 --- a/components/Link.tsx +++ /dev/null @@ -1,27 +0,0 @@ -/* eslint-disable jsx-a11y/anchor-has-content */ -import Link from 'next/link' -import { AnchorHTMLAttributes, DetailedHTMLProps } from 'react' - -const CustomLink = ({ - href, - ...rest -}: DetailedHTMLProps, HTMLAnchorElement>) => { - const isInternalLink = href && href.startsWith('/') - const isAnchorLink = href && href.startsWith('#') - - if (isInternalLink) { - return ( - - - - ) - } - - if (isAnchorLink) { - return - } - - return -} - -export default CustomLink diff --git a/components/MDXComponents.tsx b/components/MDXComponents.tsx index b10d775..629712b 100644 --- a/components/MDXComponents.tsx +++ b/components/MDXComponents.tsx @@ -2,7 +2,6 @@ import React, { useMemo } from 'react' import { ComponentMap, getMDXComponent } from 'mdx-bundler/client' import Image from './Image' -import CustomLink from './Link' import TOCInline from './TOCInline' import Pre from './Pre' import { BlogNewsletterForm } from './NewsletterForm' @@ -16,7 +15,6 @@ export const MDXComponents: ComponentMap = { Image, //@ts-ignore TOCInline, - a: CustomLink, pre: Pre, wrapper: Wrapper, //@ts-ignore diff --git a/components/MobileNav.tsx b/components/MobileNav.tsx index 19a9680..2496b49 100644 --- a/components/MobileNav.tsx +++ b/components/MobileNav.tsx @@ -1,5 +1,5 @@ import { useState } from 'react' -import Link from './Link' +import Link from 'next/link' import headerNavLinks from '@/data/headerNavLinks' const MobileNav = () => { @@ -21,7 +21,7 @@ const MobileNav = () => {