|
- import Link from 'next/link'
-
- export const DummyLinks = () => (
- <div
- style={{
- display: 'flex',
- gap: '1rem',
- alignItems: 'center',
- marginLeft: '1rem',
- }}
- >
- <Link
- href="/"
- passHref
- >
- <a>
- About
- </a>
- </Link>
- <Link
- href="/"
- passHref
- >
- <a>
- Learn More
- </a>
- </Link>
- <Link
- href="/"
- passHref
- >
- <a>
- Contact
- </a>
- </Link>
- </div>
- )
|