Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

38 lines
488 B

  1. import Link from 'next/link'
  2. export const DummyLinks = () => (
  3. <div
  4. style={{
  5. display: 'flex',
  6. gap: '1rem',
  7. alignItems: 'center',
  8. marginLeft: '1rem',
  9. }}
  10. >
  11. <Link
  12. href="/"
  13. passHref
  14. >
  15. <a>
  16. About
  17. </a>
  18. </Link>
  19. <Link
  20. href="/"
  21. passHref
  22. >
  23. <a>
  24. Learn More
  25. </a>
  26. </Link>
  27. <Link
  28. href="/"
  29. passHref
  30. >
  31. <a>
  32. Contact
  33. </a>
  34. </Link>
  35. </div>
  36. )