first init of next.js proj

This commit is contained in:
tusharmagar 2025-12-10 23:48:19 +05:30 committed by Ramnique Singh
parent 338cc3d2f9
commit f21558e9e5
68 changed files with 19082 additions and 0 deletions

View file

@ -0,0 +1,24 @@
import { cn } from "@/lib/utils";
import type { Experimental_GeneratedImage } from "ai";
export type ImageProps = Experimental_GeneratedImage & {
className?: string;
alt?: string;
};
export const Image = ({
base64,
uint8Array,
mediaType,
...props
}: ImageProps) => (
<img
{...props}
alt={props.alt}
className={cn(
"h-auto max-w-full overflow-hidden rounded-md",
props.className
)}
src={`data:${mediaType};base64,${base64}`}
/>
);