+
+
+
+ {Array.from({ length: 3 }).map((_, index) => (
+
+
+
+ {index === 0 ? (
+
+ ) : index === 1 ? (
+
+ ) : index === 2 ? (
+
+ ) : null}
+
+
+
+ ))}
+
+
+
+ {Array.from(Array(count).keys()).map((_, index) => (
+
+ ))}
+
+
+
+ );
+}
diff --git a/src/components/ui/BannerCard.tsx b/src/components/ui/BannerCard.tsx
new file mode 100644
index 0000000..20c69c2
--- /dev/null
+++ b/src/components/ui/BannerCard.tsx
@@ -0,0 +1,43 @@
+import * as React from 'react';
+
+import { cn } from '@/lib/utils';
+
+const BannerCard = React.forwardRef