import { getContextData } from "waku/middleware/context";
import App from "@/picker/App";
export default async function HomePage() {
const { user } = getContextData();
return (
Interactive Language Explorer
;
);
}
const getData = async () => {
const data = {
title: "Waku",
headline: "Waku",
body: "Hello world!",
};
return data;
};
export const getConfig = async () => {
return {
render: "dynamic",
} as const;
};