diff --git a/src/app/ui/page.tsx b/src/app/ui/page.tsx index b642a31a..1e1f3e91 100644 --- a/src/app/ui/page.tsx +++ b/src/app/ui/page.tsx @@ -1,12 +1,20 @@ -import { Button, buttonSizes, buttonVariants } from "@/components/ui"; +import { + Button, + buttonSizes, + buttonVariants, + Card, + cardVariants, +} from "@/components/ui"; import { NextPage } from "next"; const Page: NextPage = () => { return ( <> -
-

Ledgity DApp UI kit

-
+
+

+ Ledgity DApp UI kit +

+

Buttons

@@ -21,6 +29,23 @@ const Page: NextPage = () => { ))}
+
+

Cards

+
+ {cardVariants.map((variant, index) => ( + +

{variant}

+
+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed + do eiusmod tempor incididunt ut labore et dolore magna + aliqua. Ut enim ad minim veniam, quis nostrud exercitation + ullamco laboris nisi ut aliquip ex ea commodo consequat. +

+
+ ))} +
+
diff --git a/src/components/ui/index.ts b/src/components/ui/index.ts index 120989f0..5e024a3f 100644 --- a/src/components/ui/index.ts +++ b/src/components/ui/index.ts @@ -1,2 +1,3 @@ export * from "./Button"; -export * from "./Scroller"; \ No newline at end of file +export * from "./Scroller"; +export * from "./Card"; \ No newline at end of file