first commit

This commit is contained in:
dekun
2026-06-10 19:59:27 +08:00
commit d141623070
813 changed files with 61301 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import Header from "@/components/header";
import Divination from "@/components/divination";
import Footer from "@/components/footer";
export default function Home() {
return (
<>
<Header />
<Divination />
<Footer />
</>
);
}