diff --git a/src/utils.ts b/src/utils.ts
index 511e89b..522b37d 100644
--- a/src/utils.ts
+++ b/src/utils.ts
@@ -17,6 +17,3 @@ export function range(fromOrTo: number, to?: number, step = 1): number[]
return [...Array(Math.floor((to - from) / step))].map((_, i) => from + i * step);
}
-
-console.log(range(3))
-console.log(range(2, 5))
diff --git a/src/views/Projects.vue b/src/views/Projects.vue
index e9b47fe..9d64d6d 100644
--- a/src/views/Projects.vue
+++ b/src/views/Projects.vue
@@ -1,16 +1,24 @@