diff --git a/docs/src/app/components/Card.tsx b/docs/src/app/components/Card.tsx
index f0f4354..d2a17f8 100644
--- a/docs/src/app/components/Card.tsx
+++ b/docs/src/app/components/Card.tsx
@@ -10,12 +10,12 @@ export function Card({
description: string;
}) {
return (
-
-
+
+
{name}
-
+
{description}
diff --git a/docs/src/app/components/CopyableCode.tsx b/docs/src/app/components/CopyableCode.tsx
deleted file mode 100644
index 20be183..0000000
--- a/docs/src/app/components/CopyableCode.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
-"use client";
-
-import { IconCopy, IconCopyCheck } from "@tabler/icons-react";
-import { useState } from "react";
-
-export default function CopyableCode({ children }: { children: string }) {
- const [success, setSuccess] = useState(false);
- const handleClick = () => {
- navigator.clipboard.writeText(children);
- setSuccess(true);
- setTimeout(() => setSuccess(false), 3000);
- };
- return (
-
-
-
- );
-}
diff --git a/docs/src/app/components/GridPattern.tsx b/docs/src/app/components/GridPattern.tsx
index d9e8bc1..d376fab 100644
--- a/docs/src/app/components/GridPattern.tsx
+++ b/docs/src/app/components/GridPattern.tsx
@@ -8,7 +8,7 @@ export function GridPattern() {
return (