Implemented Carousel logic

This commit is contained in:
Said
2026-01-03 18:06:18 +02:00
parent 9415c99e15
commit b7d6fe8f40
34 changed files with 1153 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Frontend.Libs.Generic.Carousel.Components;
public class CarouselItem
{
public string ImageUrl { get; set; } = string.Empty;
public string Text { get; set; } = string.Empty;
}