Skip to content

Commit

Permalink
added Daas-iot dccs as a project
Browse files Browse the repository at this point in the history
  • Loading branch information
Farfi55 committed Nov 19, 2024
1 parent bc2b0a9 commit d05fba6
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/lib/components/Tech.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
}
}
src = `https://cdn.simpleicons.org/${technology?.iconSlug}`;
if (color) {
src += `/${color}`;
Expand Down Expand Up @@ -43,6 +44,8 @@
{#if technology.iconSlug}
{#if technology.iconSlug.startsWith('fa-')}
<i class="{technology.iconSlug} text-base w-6 h-6 self-center text-center"></i>
{:else if technology.iconSlug.startsWith('/assets/')}
<img src={technology.iconSlug} class="w-6 h-6 self-center rounded-sm" />
{:else}
<img {src} class="w-6 h-6 self-center" />
{/if}
Expand Down
24 changes: 24 additions & 0 deletions src/lib/technologies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ export const technologies: Technology[] = [
iconSlug: 'svelte',
website: 'https://svelte.dev/'
},
{
name: 'Express',
urlSlug: 'express',
iconSlug: 'express',
website: 'https://expressjs.com/'
},
{
name: 'ASP',
urlSlug: 'asp',
Expand Down Expand Up @@ -46,6 +52,12 @@ export const technologies: Technology[] = [
website: 'https://www.javascript.com/',
hide: true
},
{
name: 'Node.js',
urlSlug: 'nodejs',
iconSlug: 'nodedotjs',
website: 'https://nodejs.org/'
},
{
name: 'CSS',
urlSlug: 'css',
Expand Down Expand Up @@ -86,6 +98,18 @@ export const technologies: Technology[] = [
iconSlug: 'tailwindcss',
website: 'https://tailwindcss.com/'
},
{
name: 'Sequelize',
urlSlug: 'sequelize',
iconSlug: 'sequelize',
website: 'https://sequelize.org/'
},
{
name: 'DaaS-IoT',
urlSlug: 'daas-iot',
iconSlug: '/assets/icons/daas-iot.png',
website: 'https://daasiot.sebyone.it/'
},
{
name: 'Java',
urlSlug: 'java',
Expand Down
10 changes: 10 additions & 0 deletions src/routes/api/projects/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ async function getProjects() {

const github = "https://github.com/Farfi55";
let projects: Project[] = [
{
title: "Daas-iot distributed configurable control system",
slug: "daas-iot-backend-server",
description: "A Backend server for managing IoT devices through a REST API, built with Express and Sequelize. <br>One of my main tasks for the <i>DaaS-IoT</i> project.<br>",
date: "2024-09-18",
published: true,
tags: ["Daas-IoT", "Node.js", "Express", "Sequelize"],
repo: "https://github.com/sebyone/daasiot-examples-dccs",
coverImage: "/assets/projects/sebyone/daas-iot-example-dccs/cover.png",
},
{
title: "Personal website",
slug: "personal-website",
Expand Down
2 changes: 1 addition & 1 deletion src/routes/projects/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</a>
<p class="text-muted ms-auto">{formatDate(project.date)}</p>
</span>
<p class="pb-3 self-center">{project.description}</p>
<p class="pb-3 self-center">{@html project.description}</p>
<div class="flex flex-wrap gap-2 content-around">
{#each project.tags as tag}
<div class="inline">
Expand Down
Binary file added static/assets/icons/daas-iot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 d05fba6

Please sign in to comment.