From 73cb4eb6d89e737ba049af34c263cbc96b3066ed Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:02:27 +0000 Subject: [PATCH] Update components/skeletons/fourth.tsx --- components/skeletons/fourth.tsx | 274 ++++++++++++++++++++++++++++++++ 1 file changed, 274 insertions(+) create mode 100644 components/skeletons/fourth.tsx diff --git a/components/skeletons/fourth.tsx b/components/skeletons/fourth.tsx new file mode 100644 index 0000000..f978b12 --- /dev/null +++ b/components/skeletons/fourth.tsx @@ -0,0 +1,274 @@ +import React from "react"; +import { cn } from "@/lib/utils"; +import { InfiniteMovingCards } from "@/components/ui/infinite-moving-cards"; +import { Globe } from "../globe"; +export const SkeletonFour = () => { + return ( +
+ + + + + + + + + + + +
+ ); +}; + +const MovingGrid = () => { + return ( +
+ + + + + Docker + + + + + + + + + + Digital Ocean + + + + file_type_tailwind + + + Tailwind CSS + + + + + + + + + Framer Motion + + + + + + + + + + + + + + + + + + Redis + + + Vercel + + + AWS + + + GitHub + +
+ ); +}; + +// Logos + +const GitHubLogo = () => { + return ( + + + + + + + + + + ); +}; +const VercelLogo = () => { + return ( + + + + ); +}; + +const AWSLogo = () => { + return ( + + + + + ); +};