mirror of
https://github.com/yusufipk/OpenFrame.git
synced 2026-09-11 09:36:08 +00:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
import { LandingPage } from '@/components/LandingPage';
|
|
import { auth } from '@/lib/auth';
|
|
|
|
export default async function HomePage() {
|
|
const session = await auth();
|
|
|
|
return <LandingPage isLoggedIn={Boolean(session?.user)} />;
|
|
}
|