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.

9 lines
618 B

  1. export default function ProjectBanner() {
  2. return (
  3. <div id="ProjectBanner" className="flex flex-col justify-center items-center text-center mx-8 p-8 bg-secondary-main"
  4. style={{width: '100%', maxWidth: '600px'}}>
  5. <img src="assets/images/logo-site.png" alt="CodeHub Logo" width="350" height="350" />
  6. <h1 className="my-4 font-black text-[52px] leading-[52px] text-white">Project CodeHub</h1>
  7. <p className="font-semibold text-[20px] text-white">The instructions and source codes repository for the<br />DOST - IT Department</p>
  8. </div>
  9. )
  10. }