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.
 
 
 

14 regels
276 B

  1. import {Link} from "@remix-run/react"
  2. export const Brand = () => (
  3. <Link
  4. to="/"
  5. className="block no-underline text-[1.5rem] font-bold uppercase w-8 text-center sm:text-left sm:w-auto"
  6. >
  7. B
  8. <span className="hidden sm:inline">
  9. rand
  10. </span>
  11. </Link>
  12. )