Implements Initial Stack Slider

This commit is contained in:
2023-11-08 04:15:18 -03:00
parent 100926b20d
commit 0b32845c2b
17 changed files with 327 additions and 48 deletions

View File

@@ -0,0 +1,5 @@
export interface Stack {
name: string;
image: string;
description: string;
}