BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/ForgeUI/framework-agnostic

Framework Agnostic

forgeui/framework-agnostic
FreeComponent

Visually demonstrates cross-framework adaptability using animated stack icons and a glowing pipeline effect.

Live preview

live · rendered by the registry
Rendered by ForgeUI on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://forgeui.in/r/framework-agnostic.json

Source

registry/forgeui/framework-agnostic.tsxforgeui.in/r/framework-agnostic.json · first 6 KB
1"use client";
2
3import { cn } from "@/lib/utils";
4import { useState, useEffect } from "react";
5import type { SVGProps } from "react";
6
7type FrameworkAgnosticProps = {
8 cardTitle?: string;
9 cardDescription?: string;
10};
11
12const FrameworkAgnostic = ({
13 cardTitle = "Framework Agnostic",
14 cardDescription = "Seamlessly integrate with any tech stack, whether it's Next.js,React, HTML, or anything else. Statsio works everywhere.",
15}: FrameworkAgnosticProps) => {
16 return (
17 <div
18 className={cn(
19 "relative",
20 "flex flex-col justify-between",
21 "h-80 space-y-4",
22 "rounded-md border border-neutral-800/80 bg-neutral-950",
23 )}
24 >
25 <FrameworkCard />
26 <div className="px-4 pb-4">
27 <div className="text-sm font-semibold text-white">{cardTitle}</div>
28 <div className="mt-2 text-xs text-neutral-400">{cardDescription}</div>
29 </div>
30 </div>
31 );
32};
33
34export default FrameworkAgnostic;
35
36const FrameworkCard = () => {
37 const [nextJsTransform, setNextJsTransform] = useState("none");
38 const [reactTransform, setReactTransform] = useState("none");
39 const [htmlTransform, setHtmlTransform] = useState("none");
40
41 useEffect(() => {
42 const cycleAnimations = async () => {
43 const upStyle = "translateY(-3.71px) rotateX(10.71deg) translateZ(20px)";
44 const downStyle = "none";
45
46 const transitionDuration = 1100;
47
48 const durationOfUpState = 1200;
49 const delayBetweenCards = 600;
50
51 while (true) {
52 setReactTransform(upStyle);
53 await new Promise((resolve) => setTimeout(resolve, durationOfUpState));
54 setReactTransform(downStyle);
55 await new Promise((resolve) =>
56 setTimeout(resolve, transitionDuration + delayBetweenCards),
57 );
58
59 setNextJsTransform(upStyle);
60 await new Promise((resolve) => setTimeout(resolve, durationOfUpState));
61 setNextJsTransform(downStyle);
62 await new Promise((resolve) =>
63 setTimeout(resolve, transitionDuration + delayBetweenCards),
64 );
65
66 setHtmlTransform(upStyle);
67 await new Promise((resolve) => setTimeout(resolve, durationOfUpState));
68 setHtmlTransform(downStyle);
69 await new Promise((resolve) =>
70 setTimeout(resolve, transitionDuration + delayBetweenCards),
71 );
72 }
73 };
74
75 cycleAnimations();
76 }, []);
77
78 const cardClasses =
79// … truncated

Files it writes

  • registry/forgeui/framework-agnostic.tsx

Facts

Registry
ForgeUI
Type
registry:ui
Access
Free
Files written
1
Licence
NOASSERTION
First indexed
2026-08-01
Last confirmed
today

Go to the source

Docs on ForgeUI forgeui.in AmanShakya0018/forgeui on GitHub Raw registry item This item as JSON

More from ForgeUI

All 28 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Animated Formanimated-formForgeUIComponentsFreeno deps
Animated OTPanimated-otpForgeUIComponentsFreeno deps
Animated Tabsanimated-tabsForgeUIComponentsFreeno deps
AuralisauralisForgeUIComponentsFreeno deps
Bot Detectionbot-detectionForgeUIComponentsFreeno deps
Chromatic Fluidchromatic-fluidForgeUIComponentsFreeno deps
CloudscapecloudscapeForgeUIComponentsFreeno deps
CosmicriftcosmicriftForgeUIComponentsFreeno deps
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex