Skip to content

Commit

Permalink
fixed badge build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ariflogs committed Oct 30, 2024
1 parent 86f2fb9 commit 7b7293f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/(marketing)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
Textarea,
} from "@/packages/ui";
import AccordionStyleDefault from "@/preview/components/accordion-style-default";
import BadgeStyleVariants from "@/preview/components/badge-style-variants";
import { GithubIcon, MessageCircle } from "lucide-react";
import Image from "next/image";
import Link from "next/link";
Expand Down Expand Up @@ -71,8 +72,7 @@ export default function Home() {
<div className="space-y-4">
<Text as="h4">Badge</Text>
<div className="flex flex-wrap space-y-2 lg:space-y-0 space-x-2">
<Badge>Default Badge</Badge>
<Badge variant="error">Error Badge</Badge>
<BadgeStyleVariants />
</div>
</div>
<div className="space-y-4">
Expand Down
6 changes: 2 additions & 4 deletions app/(sink)/demo/components/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
TabsTriggerList,
} from "@/packages/ui";
import { Card } from "@/packages/ui/Cards/Card";
import BadgeStyleVariants from "@/preview/components/badge-style-variants";
import { Check, CheckCircle, CheckCircle2 } from "lucide-react";
import React from "react";

Expand All @@ -25,10 +26,7 @@ export default function page() {
<Button variant="link">Link Button</Button>
</div>
<div className="space-x-4">
<Badge>Badge</Badge>
<Badge variant="success">Badge</Badge>
<Badge variant="error">Badge</Badge>
<Badge variant="filled">Badge</Badge>
<BadgeStyleVariants />
</div>

<div className="flex items-center space-x-4">
Expand Down

0 comments on commit 7b7293f

Please sign in to comment.