🔧 chore: replace dummy data with real data
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m4s

This commit is contained in:
2026-03-03 13:58:11 +07:00
parent 2f9fef54ff
commit 29f2d3fa59
6 changed files with 168 additions and 160 deletions

View File

@ -0,0 +1,8 @@
import { Skeleton } from "@/shared/libs/shadcn/ui/skeleton";
import React from "react";
const HeroSkeleton = () => {
return <Skeleton className="w-full h-full" />;
};
export default HeroSkeleton;