diff options
Diffstat (limited to 'src/pages/login.tsx')
-rw-r--r-- | src/pages/login.tsx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/pages/login.tsx b/src/pages/login.tsx new file mode 100644 index 0000000..8ddc1a1 --- /dev/null +++ b/src/pages/login.tsx @@ -0,0 +1,28 @@ +import AuthScreen from "@/components/Login2"; +import { Link } from "waku"; +import db from "@/lib/db"; + +export default async function AuthPage() { + const data = await getData(); + + return ( + <div> + <AuthScreen /> + </div> + ); +} + +const getData = async () => { + // const data = { + // title: "Waku", + // headline: "Waku", + // body: "Hello world!", + // }; + // return data; +}; + +export const getConfig = async () => { + return { + render: "static", + } as const; +}; |