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

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