Skip to content

Commit

Permalink
Add additional projects
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinTTY committed Sep 19, 2023
1 parent 33895ef commit ca6681c
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 23 deletions.
Binary file added assets/projects/bme680.webp
Binary file not shown.
Binary file added assets/projects/website.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions components/project-showcase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ export class ProjectShowcase extends LitElement {
img {
height: 360px;
filter: brightness(0.5);
}
.description {
Expand All @@ -122,9 +123,6 @@ export class ProjectShowcase extends LitElement {
font-size: 0.5em;
font-weight: 600;
}
.project-information {
}
}
`;

Expand Down
58 changes: 38 additions & 20 deletions routes/home-route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,26 +81,44 @@ export class HomeRoute extends LitElement {
},
],
},
// {
// title: 'Website',
// description: 'My personal website (you are here)',
// technologies: ['TypeScript', 'LitElement', 'Web Components'],
// links: [],
// },
// {
// title: 'TBA...',
// description:
// 'A tracker for your personal finances I am currently working on',
// technologies: ['React', 'C#', 'GraphQL'],
// links: [],
// },
// {
// title: 'BME680 Driver',
// description:
// 'Device driver for the Bosch BME680 temperature, humidity, pressure, air quality sensor',
// technologies: ['C#', 'IOT', 'Hardware'],
// links: [],
// },
{
title: 'BME680 Driver',
description:
'Device driver for the Bosch BME680 temperature, humidity, pressure and air quality sensor. ',
projectImageAssetPath: '/assets/projects/bme680.webp',
technologies: ['C#', 'IOT', 'Hardware'],
links: [
{
alt: 'Github',
logoAssetPath: '/assets/brands/github.svg',
href: 'https://github.com/RobinTTY/BME680',
},
{
alt: 'Nuget',
logoAssetPath: '/assets/brands/nuget.svg',
href: 'https://www.nuget.org/packages/Bme680Driver/',
},
],
},
{
title: 'Website',
description:
'My personal website (you are here). Built using Lit, a lightweight web components library.',
projectImageAssetPath: '/assets/projects/website.png',
technologies: ['TypeScript', 'Lit', 'Web Components'],
links: [
{
alt: 'Github',
logoAssetPath: '/assets/brands/github.svg',
href: 'https://github.com/RobinTTY/RobinTTY.github.io',
},
{
alt: 'Website',
logoAssetPath: '/assets/common/external-link.svg',
href: 'https://www.robintty.com/',
},
],
},
];

render() {
Expand Down

1 comment on commit ca6681c

@vercel
Copy link

@vercel vercel bot commented on ca6681c Sep 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.