Skip to content

Commit

Permalink
Update homepage images
Browse files Browse the repository at this point in the history
  • Loading branch information
SmejkalJakub committed Mar 25, 2024
1 parent 4cbe464 commit b5bf91c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions src/components/HomepageFeatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ const FeatureList = [
title: 'CHESTER',
subtitle: 'Configurable IoT Gateway',
link: '/chester/',
svg: '/img/chester.svg',
src: '/img/chester.png',
width: 300,
height: 200,
description: (
<>
CHESTER is an extensible IoT gateway platform featuring NB-IoT, LTE-M, LoRaWAN, BLE, and GNSS radio technologies.
Expand All @@ -19,7 +21,9 @@ const FeatureList = [
title: 'EMBER',
subtitle: 'LoRaWAN IoT Hotspot',
link: '/ember/',
svg: '/img/ember.svg',
src: '/img/ember.png',
width: 267,
height: 200,
description: (
<>
EMBER is a RouterBOARD-based waterproof industrial IoT gateway (with LTE card) for LoRaWAN sensors and actuators.
Expand All @@ -30,7 +34,9 @@ const FeatureList = [
title: 'TOWER',
subtitle: 'Pluggable IoT Platform',
link: '/tower/',
svg: '/img/tower.svg',
src: '/img/tower.png',
width: 300,
height: 200,
description: (
<>
TOWER is an open-source IoT platform for rapid deployment, featuring sub-GHz radio and a very low power consumption.
Expand All @@ -41,7 +47,9 @@ const FeatureList = [
title: 'CLOUD',
subtitle: 'Middleware IoT Service',
link: '/cloud/',
svg: '/img/cloud.svg',
src: '/img/cloud.svg',
width: 200,
height: 200,
description: (
<>
CLOUD is a device and data management platform providing REST API services for seamless integration for customers.
Expand All @@ -50,11 +58,11 @@ const FeatureList = [
},
];

function Feature({ svg, title, subtitle, link, description }) {
function Feature({ src, width, height, title, subtitle, link, description }) {
return (
<div className={clsx('col col--3')}>
<div className="text--center">
<img src = {svg} width = "200" height = "200" />
<img src={src} width={width} height={height} />
</div>
<div className="text--center padding-horiz--md">
<h2>{title}</h2>
Expand All @@ -68,7 +76,7 @@ function Feature({ svg, title, subtitle, link, description }) {
</div>
<p>{description}</p>
</div>
</div>
</div >
);
}

Expand Down
Binary file added static/img/chester.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/ember.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/tower.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 b5bf91c

Please sign in to comment.