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.
 
 
 

20 lines
297 B

  1. import Link from 'next/link'
  2. import styles from './Brand.module.css'
  3. export const Brand = () => (
  4. <Link
  5. href="/"
  6. passHref
  7. >
  8. <a
  9. href="/"
  10. className={styles['brand-base']}
  11. >
  12. B
  13. <span className={styles.hide}>
  14. rand
  15. </span>
  16. </a>
  17. </Link>
  18. )