Skip to content

Commit aa326b8

Browse files
committed
fix: 🐛 add logog to homepage
1 parent c941bb9 commit aa326b8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/pages/index.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,21 @@ function HomepageHeader() {
1313
return (
1414
<header className={clsx('hero hero--primary', styles.heroBanner)}>
1515
<div className="container">
16+
<div className="flex justify-center">
17+
<div className="rounded-full bg-white p-6 w-max mb-10 flex items-center justify-center">
18+
<img src="img/logo.svg" alt="FAIR BioRS Logo" width="100px" height="100px" />
19+
</div>
20+
</div>
21+
1622
<h1 className="hero__title text-4xl">{siteConfig.title}</h1>
23+
1724
<p className="hero__subtitle text-xl">{siteConfig.tagline}</p>
25+
1826
<div className={styles.buttons}>
1927
<Link className="button button--secondary button--lg" to="/docs/getting-started/intro">
2028
View the Documentation
2129
</Link>
30+
2231
<Link
2332
className="button button--secondary button--lg"
2433
to="https://github.com/FAIR-BioRS/Docs"
@@ -35,6 +44,7 @@ export default function Home() {
3544
return (
3645
<Layout title="" description="Documentation for the FAIR BioRS Principles">
3746
<HomepageHeader />
47+
3848
<main>
3949
<HomepageFeatures />
4050
</main>

0 commit comments

Comments
 (0)