blob: e990060ca013f8ca258ca3ccc37fc10b2da6db46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import React from "react";
import { Link } from "react-router-dom";
import {
LogoIcon,
} from "../../images/Images";
const Header: React.FC = () => {
return (
<div className="flex justify-center px-4 py-3 bg-gradient-to-t from-block to-bright">
<Link to="/" tabIndex={-1} className="flex gap-4">
<img src={LogoIcon} alt="Logo" className="h-18 translate-y-0.5" />
<div className="text-[#fff] flex flex-col justify-center not-md:hidden">
<div className="font-barlow-condensed-bold text-5xl truncate leading-10">
PORTAL 2
</div>
<div className="font-barlow-condensed-regular text-3xl leading-7">
Least Portals Hub
</div>
</div>
</Link>
</div>
)
}
export default Header;
|