function HomepageHeader()

in doc/src/pages/index.js [10:26]


function HomepageHeader() {
  const {siteConfig} = useDocusaurusContext();
  return (
    <header className={clsx('hero hero--primary', styles.heroBanner)}>
      <div className="container">
        <h1 className="hero__title">
            <img src="img/logo.gif" width="40%"/>
        </h1>
			<div style={{ color: 'black' }}>
				Apache Karaf Minho is a green Java application modules runtime.<br/>
				It provides extensible modules launchers per module kind, out of the box services that any module running on Minho runtime can leverage without cost.<br/>
				Minho is GFLE (Green Fast Light Efficient) runtime.
				</div>
      </div>
    </header>
  );
}