primitive gallery on indexpage

This commit is contained in:
2022-12-12 12:09:02 +01:00
parent 931ed19f7f
commit 641ff29d44
4 changed files with 109 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import { SEO } from "../components/SEO";
import { Icon, IconSet } from "../components/Icon";
import splashes from "../data/splashes.json";
import Link from "next/link";
import { IndexGallery } from "../components/IndexGallery/IndexGallery";
const PageIndex = () => {
const [splash, setSplash] = useState("");
@@ -64,6 +65,7 @@ const PageIndex = () => {
github <Icon icon={IconSet.GitHub} />
</Link>
</main>
<IndexGallery />
</>
);
};