import Link from "next/link";
import type React from "react";
export function CustomLink(props: React.ComponentProps<"a">) {
const href = props.href ?? "";
if (href.startsWith("/")) {
return (
{props.children}
);
}
if (href.startsWith("#")) {
return ;
}
return ;
}