feat(example page): create initial 4 cards (#21)

* feat(example page): add new examples section in the navbar

* feat(example page): initial layout of the new page

* feat(example page): create initial 4 workflows

* style(example page): center title

* style(example page): remove comment

* fix(example page): add hyperlink for txt2img card
This commit is contained in:
Emmanuel Morales
2024-02-09 11:15:30 +08:00
committed by GitHub
parent 1939ff4153
commit 65492a108c
7 changed files with 105 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
"use client";
import { LoadingPageWrapper } from "@/components/LoadingWrapper";
import { usePathname } from "next/navigation";
export default function Loading() {
const pathName = usePathname();
return <LoadingPageWrapper className="h-full" tag={pathName.toLowerCase()} />;
}