diff --git a/src/app/explorer/components/GuildCard.tsx b/src/app/explorer/components/GuildCard.tsx new file mode 100644 index 0000000000..e3116259fc --- /dev/null +++ b/src/app/explorer/components/GuildCard.tsx @@ -0,0 +1,32 @@ +import { ImageSquare, Users } from "@phosphor-icons/react/dist/ssr"; +import { Badge } from "app/components/ui/Badge"; +import { Card } from "app/components/ui/Card"; +import Link from "next/link"; + +export const GuildCard = () => { + return ( + + +
+ +
+ +

+ Sample guild +

+
+ + + + {new Intl.NumberFormat("en", { + notation: "compact", + }).format(125244)} + + + + 5 groups +
+
+ + ); +}; diff --git a/src/app/explorer/page.tsx b/src/app/explorer/page.tsx new file mode 100644 index 0000000000..83f7cd1db5 --- /dev/null +++ b/src/app/explorer/page.tsx @@ -0,0 +1,11 @@ +import { GuildCard } from "./components/GuildCard"; + +const Explorer = () => { + return ( +
+ +
+ ); +}; + +export default Explorer; diff --git a/src/app/globals.css b/src/app/globals.css index 77bbf084d1..227d4fc695 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -140,5 +140,8 @@ --button-success-foreground: #fff; --button-success-subtle: var(--green-300); --button-success-subtle-foreground: var(--green-500); + + --badge-background: rgba(255, 255, 255, 0.06); + --badge-foreground: var(--foreground); } }