import { Metadata } from "next";
import { Setup } from "./_components/Setup";
export const metadata: Metadata = {
title: "Link",
};
export default function Page() {
return <Setup />;
}