mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-06-28 20:29:13 +00:00
Initial commit for working landing page
This commit is contained in:
parent
f3fecc77c5
commit
439b6eabe8
36 changed files with 9186 additions and 0 deletions
20
components/logo.tsx
Normal file
20
components/logo.tsx
Normal file
|
@ -0,0 +1,20 @@
|
|||
type Props = {
|
||||
className?: string;
|
||||
};
|
||||
export const Logo: React.FC<Props> = ({ className }) => {
|
||||
return (
|
||||
<svg
|
||||
className={className}
|
||||
viewBox="0 0 512 384"
|
||||
stroke="current"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
{/* <rect width="512" height="384" /> */}
|
||||
<path d="M96 64L416 64" strokeWidth="32" strokeLinecap="round" />
|
||||
<path d="M147 128L371 128" strokeWidth="32" strokeLinecap="round" />
|
||||
<path d="M221 192L381 192" strokeWidth="32" strokeLinecap="round" />
|
||||
<path d="M242 256L338 256" strokeWidth="32" strokeLinecap="round" />
|
||||
<path d="M227 320L259 320" strokeWidth="32" strokeLinecap="round" />
|
||||
</svg>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue