Skip to content

Commit

Permalink
Added new project
Browse files Browse the repository at this point in the history
  • Loading branch information
Naapperas committed Jan 5, 2024
1 parent af0367c commit 9b6eb98
Showing 6 changed files with 46 additions and 1 deletion.
9 changes: 9 additions & 0 deletions src/components/Icons/Blender.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
import Icon, { type Props as IconProps } from "./Icon.astro";
type Props = Pick<IconProps, "iconClasses">;
const { iconClasses } = Astro.props;
---

<Icon pack="logos" name="blender" iconClasses={iconClasses} title="Svelte" />
9 changes: 9 additions & 0 deletions src/components/Icons/ThreeJS.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
import Icon, { type Props as IconProps } from "./Icon.astro";
type Props = Pick<IconProps, "iconClasses">;
const { iconClasses } = Astro.props;
---

<Icon pack="logos" name="threejs" iconClasses={iconClasses} title="Svelte" />
4 changes: 4 additions & 0 deletions src/components/Icons/index.astro
Original file line number Diff line number Diff line change
@@ -19,6 +19,8 @@ import Solr from "./Solr.astro";
import Svelte from "./Svelte.astro";
import KTor from "./KTor.astro";
import Kotlin from "./Kotlin.astro";
import ThreeJS from "./ThreeJS.astro";
import Blender from "./Blender.astro";
import type { Props as IconProps } from "./Icon.astro";
@@ -43,6 +45,8 @@ export const icons = {
svelte: Svelte,
ktor: KTor,
kotlin: Kotlin,
threejs: ThreeJS,
blender: Blender,
};
export type IconTags = keyof typeof icons;
23 changes: 23 additions & 0 deletions src/content/project/feuper-wave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: "FEUPer Wave"
description: "FEUPer Wave is a game developed for the 3rd delivery of SGI. The objective of this delivery was to develop a racing game using the Three.js library. The theme chosen was inspired by Tron and the rest of the scene has a \"vapor wave\" feel (hence the name). The models were all developed in Blender."
shortDescription: "Game developed for the 3rd delivery of SGI"
upstreamLink: "https://github.com/ttoino/feup-sgi"
previewImage: "./images/sgi.png"
deployment:
url: "https://sgi.toino.pt/tp3"
academicData:
course:
code: SGI
fullName: "Graphical and Interactive Systems"
year: "2023/2024"
semester: 1
# marks: 16.7
techStack:
- "javascript"
# - "threejs"
- "blender"
otherMembers:
- name: "João Pereira"
githubUrl: "https://github.com/ttoino"
---
Binary file added src/content/project/images/sgi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/content/project/sdle.md
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ academicData:
fullName: "Large Scale Distributed Systems"
year: "2023/2024"
semester: 1
# marks: 17.2
# marks: 16.7
techStack:
- "svelte"
- "typescript"

0 comments on commit 9b6eb98

Please sign in to comment.