mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
17 lines
390 B
JavaScript
17 lines
390 B
JavaScript
import { h } from 'preact';
|
|
import Heading from './Heading';
|
|
import Logo from './Logo';
|
|
|
|
export default function LinkedLogo() {
|
|
return (
|
|
<Heading size="lg">
|
|
<a className="transition-colors flex items-center space-x-4 dark:text-white hover:text-blue-500" href="/">
|
|
<div className="w-10">
|
|
<Logo />
|
|
</div>
|
|
Frigate
|
|
</a>
|
|
</Heading>
|
|
);
|
|
}
|