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.

index.tsx 244 B

1234567891011121314
  1. import {Link} from "@remix-run/react"
  2. import styles from './Brand.module.css'
  3. export const Brand = () => (
  4. <Link
  5. to="/"
  6. className={styles['brand-base']}
  7. >
  8. B
  9. <span className={styles.hide}>
  10. rand
  11. </span>
  12. </Link>
  13. )