blob: 8ddc1a12a94be2d7183bb1c3055cf8c134656c76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
};
|