import Link from "next/link";
import Image from "next/image";
type BrandAssetProps = {
className?: string;
title?: string;
};
export function BrandMark({ className, title }: BrandAssetProps) {
return (
);
}
export function AppIcon({ className, title }: BrandAssetProps) {
return (
);
}
export function Brand({ compact = false }: { compact?: boolean }) {
return (
{!compact && VniDrop}
{!compact && Send files directly. Stay in control.}
);
}