Files
nonebot2/website/src/pages/index.tsx
2025-03-09 21:18:32 +08:00

13 lines
231 B
TypeScript

import React from "react";
import Layout from "@theme/Layout";
import HomeContent from "@/components/Home";
export default function Homepage(): React.ReactNode {
return (
<Layout>
<HomeContent />
</Layout>
);
}