{isLoading
? Array.from({ length: PAGE_SIZE }, (_, i) => (
diff --git a/src/app/explorer/_components/StickyBar.tsx b/src/app/explorer/_components/StickyBar.tsx
index f06ad2ac09..90e78128ea 100644
--- a/src/app/explorer/_components/StickyBar.tsx
+++ b/src/app/explorer/_components/StickyBar.tsx
@@ -1,12 +1,9 @@
"use client";
-import { buttonVariants } from "@/components/ui/Button";
import { ToggleGroup, ToggleGroupItem } from "@/components/ui/ToggleGroup";
import useIsStuck from "@/hooks/useIsStuck";
import useScrollspy from "@/hooks/useScrollSpy";
import { cn } from "@/lib/cssUtils";
-import { Plus } from "@phosphor-icons/react";
import { useAtom, useAtomValue, useSetAtom } from "jotai";
-import Link from "next/link";
import { type PropsWithChildren, useEffect } from "react";
import { activeSectionAtom, isNavStuckAtom, isSearchStuckAtom } from "../atoms";
import { ACTIVE_SECTION } from "../constants";
@@ -70,31 +67,6 @@ const Nav = () => {
);
};
-export const CreateGuildLink = () => {
- const isNavStuck = useAtomValue(isNavStuckAtom);
- return (
-
-
-
Create guild
-
- );
-};
-
export const StickyBar = ({ children }: PropsWithChildren) => {
const setIsNavStuck = useSetAtom(isNavStuckAtom);
const isSearchStuck = useAtomValue(isSearchStuckAtom);
diff --git a/src/app/explorer/page.tsx b/src/app/explorer/page.tsx
index 5fbf46aed7..387d9fe329 100644
--- a/src/app/explorer/page.tsx
+++ b/src/app/explorer/page.tsx
@@ -9,10 +9,11 @@ import {
dehydrate,
} from "@tanstack/react-query";
import { Suspense } from "react";
+import { CreateGuildLink } from "./_components/CreateGuildLink";
import { HeaderBackground } from "./_components/HeaderBackground";
import { InfiniteScrollGuilds } from "./_components/InfiniteScrollGuilds";
import { StickySearch } from "./_components/Search";
-import { CreateGuildLink, StickyBar } from "./_components/StickyBar";
+import { StickyBar } from "./_components/StickyBar";
import { ACTIVE_SECTION } from "./constants";
import { getGuildSearch } from "./fetchers";
@@ -36,7 +37,7 @@ export default async function Explorer() {
return (
<>
-
+
-
+
Explore verified guilds