diff --git a/components/elements/Button.tsx b/components/elements/Button.tsx index 65dc458..69ce2be 100644 --- a/components/elements/Button.tsx +++ b/components/elements/Button.tsx @@ -20,7 +20,11 @@ export interface ButtonProps } function Button({ variant = "default", size = "default", ...props }: ButtonProps) { - return + return ( + + + + ) } export { Button } diff --git a/components/elements/Card.tsx b/components/elements/Card.tsx index ac9c65d..7cc5616 100644 --- a/components/elements/Card.tsx +++ b/components/elements/Card.tsx @@ -31,7 +31,6 @@ function Card({ }: CardProps) { return ( diff --git a/components/elements/Image.tsx b/components/elements/Image.tsx index e4307a8..11cbc5d 100644 --- a/components/elements/Image.tsx +++ b/components/elements/Image.tsx @@ -1,4 +1,5 @@ import * as React from "react" +import NextImage from "next/image" import { cn } from "@/lib/utils" @@ -37,18 +38,19 @@ function Image({ className, }: ImageProps) { return ( - {alt} + + + ) } diff --git a/components/elements/Typography.tsx b/components/elements/Typography.tsx index ad0e3ac..cca04e9 100644 --- a/components/elements/Typography.tsx +++ b/components/elements/Typography.tsx @@ -102,7 +102,6 @@ function Typography({ return (