diff --git a/public/projects/blockmatic.png b/public/projects/blockmatic.png new file mode 100644 index 0000000..1951013 Binary files /dev/null and b/public/projects/blockmatic.png differ diff --git a/public/projects/options-profiles.png b/public/projects/options-profiles.png new file mode 100644 index 0000000..c2e9322 Binary files /dev/null and b/public/projects/options-profiles.png differ diff --git a/public/projects/tomodachi-share.png b/public/projects/tomodachi-share.png new file mode 100644 index 0000000..b0daef4 Binary files /dev/null and b/public/projects/tomodachi-share.png differ diff --git a/src/components/ProjectCard.svelte b/src/components/ProjectCard.svelte new file mode 100644 index 0000000..a79b478 --- /dev/null +++ b/src/components/ProjectCard.svelte @@ -0,0 +1,88 @@ + + +
+
+ {#if year} + {year} + {/if} + + + {#if image} +
+ thumbnail +
+
+ {/if} + + +
+

{name}

+

{description}

+ +
+
+ + {stars} +
+ +
+
+ {language} +
+
+ + +
+
+ + + Source + + + {#if websiteUrl} + + + Website + + {/if} +
+
+
+
diff --git a/src/components/Projects.svelte b/src/components/Projects.svelte index 49ff9a5..b38ee38 100644 --- a/src/components/Projects.svelte +++ b/src/components/Projects.svelte @@ -1,5 +1,6 @@
- {#each projects as project} - -
-

{project.name}

-

{project.description}

- -
-
- - {project.stars} -
- -
-
- {project.language} -
-
- - -
-
- {/each} +
+ {#each leftColumn as project} + + {/each} +
+
+ {#each rightColumn as project} + + {/each} +