import { UrlsDataTable } from "@/components/dashboard/urls-data-table" import { getSession } from "@/lib/auth/session" import { getAllUrls } from "@/lib/db/urls" export default async function DashboardListPage() { const { session, redirect } = await getSession() if (!session) { redirect("/sign-in") } const urls = await getAllUrls() return (

URLs

Manage all your shortened URLs.

) }