mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
15 lines
299 B
React
15 lines
299 B
React
|
import { createClient } from "@/utils/supabase/server";
|
||
|
import { redirect } from "next/navigation";
|
||
|
|
||
|
export default async function Gallery() {
|
||
|
const supabase = createClient();
|
||
|
|
||
|
const {
|
||
|
data: { user },
|
||
|
} = await supabase.auth.getUser();
|
||
|
|
||
|
return (
|
||
|
<h1>This is unprotected.</h1>
|
||
|
);
|
||
|
}
|