Files
podman/examples/livekit-gemini-hacker-starter/frontend/app/page.tsx
T
2026-06-28 07:20:54 +00:00

11 lines
289 B
TypeScript

import { headers } from 'next/headers';
import { App } from '@/components/app/app';
import { getAppConfig } from '@/lib/utils';
export default async function Page() {
const hdrs = await headers();
const appConfig = await getAppConfig(hdrs);
return <App appConfig={appConfig} />;
}