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.
 
 
 

19 line
333 B

  1. import Link from 'next/link'
  2. export const Brand = () => (
  3. <Link
  4. href="/"
  5. passHref
  6. >
  7. <a
  8. href="/"
  9. className="block no-underline text-[1.5rem] font-bold uppercase w-8 text-center sm:text-left sm:w-auto"
  10. >
  11. B
  12. <span className="hidden sm:inline">
  13. rand
  14. </span>
  15. </a>
  16. </Link>
  17. )