mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2025-12-13 01:24:44 -05:00
- Updated database connection to support Turso auth token - Added vercel.json with bun build configuration - Updated environment schema for production deployment - Added new features and components for production readiness
28 lines
572 B
TypeScript
28 lines
572 B
TypeScript
import Image from "next/image";
|
|
import { cn } from "~/lib/utils";
|
|
|
|
interface LogoProps {
|
|
className?: string;
|
|
size?: "sm" | "md" | "lg";
|
|
}
|
|
|
|
export function Logo({ className, size = "md" }: LogoProps) {
|
|
const sizeClasses = {
|
|
sm: { width: 120, height: 32 },
|
|
md: { width: 160, height: 42 },
|
|
lg: { width: 240, height: 64 },
|
|
};
|
|
const { width, height } = sizeClasses[size];
|
|
|
|
return (
|
|
<Image
|
|
src="/beenvoice-logo.svg"
|
|
alt="beenvoice logo"
|
|
width={width}
|
|
height={height}
|
|
className={className}
|
|
priority
|
|
/>
|
|
);
|
|
}
|