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.
 
 
 

21 lines
295 B

  1. import Link from 'next/link'
  2. export const Brand = () => (
  3. <Link
  4. href="/"
  5. passHref
  6. >
  7. <a>
  8. <div
  9. style={{
  10. textTransform: 'uppercase',
  11. fontWeight: 'bold',
  12. fontSize: '2em',
  13. }}
  14. >
  15. Brand
  16. </div>
  17. </a>
  18. </Link>
  19. )