feat: add ray and spotlight

This commit is contained in:
Li Xin
2025-04-28 17:32:13 +08:00
parent e3b9beeefd
commit 78b10ec066
3 changed files with 59 additions and 0 deletions

View File

@@ -27,6 +27,8 @@ import { BentoGrid } from "~/components/magicui/bento-grid";
import { FlickeringGrid } from "~/components/magicui/flickering-grid";
import { Button } from "~/components/ui/button";
import { Ray } from "./_components/ray";
export default function HomePage() {
return (
<div className="flex flex-col items-center">
@@ -38,6 +40,7 @@ export default function HomePage() {
<JoinCommunitySection />
</main>
<Footer />
<Ray />
</div>
);
}