2024-06-01 16:24:36 +03:00
|
|
|
const Logo = () => {
|
|
|
|
return (
|
2024-06-01 20:30:57 +03:00
|
|
|
<div style={{ display:"flex", alignItems: 'center', justifyContent: 'center', marginLeft: "40px", marginRight: "40px"}}>
|
|
|
|
<a href="/" style={{ marginBottom: '40px', marginLeft: '40px' }}>
|
|
|
|
<img src="/logo-no-background.png" height="auto" width="400px"/>
|
2024-06-01 16:24:36 +03:00
|
|
|
</a>
|
2024-06-01 20:30:57 +03:00
|
|
|
<div style={{ marginBottom: '40px', marginRight: '40px' }}></div>
|
2024-06-01 17:33:13 +03:00
|
|
|
<a
|
2024-06-01 20:30:57 +03:00
|
|
|
href="/about-us"
|
|
|
|
className="rounded-md bg-white text-sm font-semibold text-gray-900 shadow-sm hover:bg-gray-100 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white"
|
|
|
|
style={{ marginBottom: '40px', marginRight: '40px', padding: '10px' }}
|
|
|
|
>
|
|
|
|
About us
|
|
|
|
</a>
|
2024-06-01 16:24:36 +03:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Logo;
|