mirror of
https://github.com/nonebot/nonebot2.git
synced 2026-09-07 18:03:59 +00:00
13 lines
231 B
TypeScript
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>
|
|
);
|
|
}
|