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 ( + + + + + ); +};