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.
 
 
 
 

14 lines
627 B

export default function ApplicationLogo() {
return (
<div id="ProjectTitle" className="flex">
<div id="project-logo" className="flex">
<img src="./assets/images/logo-company.png" alt="DOST Logo" width="50" height="50" />
<img src="./assets/images/logo-site.png" alt="CodeHub Logo" width="50" height="50" />
</div>
<div id="project-text">
<h2 className="font-normal text-base leading-4">DOST - IT Department</h2>
<h1 className="font-black text-4xl leading-10">CodeHub</h1>
</div>
</div>
);
}