Layout scaffolding for Web apps.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

19 lignes
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. )