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