"use client"; import { useCallback } from "react"; import { LoginButton } from "../components/auth/login"; import { LogoutButton } from "../components/auth/logout"; export default function Home() { const addUrl = useCallback(async () => { await fetch("/api/v1/links", { method: "POST", body: JSON.stringify({ url: "https://news.ycombinator.com/news" }), }); }, []); return (




); }