neroshitron/app/page.tsx

21 lines
469 B
TypeScript
Raw Normal View History

2024-05-24 17:57:03 -04:00
import { createClient } from "@/utils/supabase/server";
export default async function Index() {
const canInitSupabaseClient = () => {
// This function is just for the interactive tutorial.
// Feel free to remove it once you have Supabase connected.
try {
createClient();
return true;
} catch (e) {
return false;
}
};
const isSupabaseConnected = canInitSupabaseClient();
return (
<h1>This is unprotected.</h1>
2024-05-24 17:57:03 -04:00
);
}