Skip to content

Commit

Permalink
Capitalize the 'b' in the toolbar and change the images of the starti…
Browse files Browse the repository at this point in the history
…ng page
  • Loading branch information
aitormurgu committed Mar 12, 2024
1 parent a6af533 commit 855c2df
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const config: Config = {
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
navbar: {
title: 'biotz Academy',
title: 'Biotz Academy',
logo: {
alt: 'My Site Logo',
src: 'img/biotz-logo.svg',
Expand Down
12 changes: 8 additions & 4 deletions src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type FeatureItem = {
const FeatureList: FeatureItem[] = [
{
title: 'Scalability',
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
Svg: require('@site/static/img/scalability-2.png').default,
description: (
<>
Connect, manage and scale unlimited devices.
Expand All @@ -20,7 +20,7 @@ const FeatureList: FeatureItem[] = [
},
{
title: 'Plug & Play',
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
Svg: require('@site/static/img/plugplay.png').default,
description: (
<>
Simple configuration, without the need for internal developers.
Expand All @@ -29,7 +29,7 @@ const FeatureList: FeatureItem[] = [
},
{
title: 'Flexibility',
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
Svg: require('@site/static/img/flexibility.png').default,
description: (
<>
A solution that adapts to the needs of your company.
Expand All @@ -42,7 +42,11 @@ function Feature({title, Svg, description}: FeatureItem) {
return (
<div className={clsx('col col--4')}>
<div className="text--center">
<Svg className={styles.featureSvg} role="img" />
{typeof Svg === 'string' ? (
<img src={Svg} alt={title} className={styles.featureImage} />
) : (
<Svg className={styles.featureSvg} role="img" />
)}
</div>
<div className="text--center padding-horiz--md">
<Heading as="h3">{title}</Heading>
Expand Down
Binary file added static/img/flexibility.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/plugplay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/scalability-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 855c2df

Please sign in to comment.