Layout scaffolding for Web apps.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

14 行
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. )