import DashLayout from "../../../layouts/DashLayout"; import Image from "next/image"; // markdown styles import styles from "../../../styles/markdown.module.css"; interface WikiLandingPageProps { children: React.ReactNode; } function WikiLandingPage(props: WikiLandingPageProps) { return (
{"PeepoTalk"}
the t off ee wiki
); } WikiLandingPage.getLayout = function getLayout(page: React.ReactNode) { const metaTags = { title: "Wiki", description: "Wiki for toffee", }; return ( {page} ); }; export default WikiLandingPage;