|
1 | 1 | import { Button } from "@/components/ui/button"; |
2 | | -import { |
3 | | - Card, |
4 | | - CardContent, |
5 | | - CardFooter, |
6 | | - CardHeader, |
7 | | - CardTitle, |
8 | | -} from "@/components/ui/card"; |
9 | | -import { DiscordIcon } from "components/icons/brand-icons/DiscordIcon"; |
| 2 | +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; |
10 | 3 | import { BookOpenIcon, ChevronRightIcon } from "lucide-react"; |
11 | 4 | import type { Metadata } from "next"; |
12 | 5 | import Image from "next/image"; |
13 | 6 | import Link from "next/link"; |
14 | 7 | import accountIcon from "../../../../public/assets/support/account.svg"; |
15 | 8 | import contractsIcon from "../../../../public/assets/support/contracts.png"; |
16 | | -import discordIllustration from "../../../../public/assets/support/discord-illustration.png"; |
17 | 9 | import engineIcon from "../../../../public/assets/support/engine.png"; |
18 | 10 | import miscIcon from "../../../../public/assets/support/misc.svg"; |
19 | 11 | import connectIcon from "../../../../public/assets/support/wallets.png"; |
@@ -193,43 +185,6 @@ export default function SupportPage() { |
193 | 185 | ))} |
194 | 186 | </div> |
195 | 187 | </section> |
196 | | - <div className="container"> |
197 | | - <Card className="flex flex-row items-center justify-between gap-4 border-[#5865F2] bg-[#5865F2]/20"> |
198 | | - <div className="flex flex-col gap-2"> |
199 | | - <CardHeader> |
200 | | - <CardTitle className="font-bold text-3xl"> |
201 | | - Discord Community |
202 | | - </CardTitle> |
203 | | - </CardHeader> |
204 | | - <CardContent className="flex flex-col gap-6"> |
205 | | - <p className="text-balance"> |
206 | | - Join our Discord community to connect with other thirdweb |
207 | | - developers, ask questions, and get help. |
208 | | - </p> |
209 | | - <Button |
210 | | - className="mr-auto flex flex-row gap-2 bg-[#5865F2] text-white hover:bg-[#5865F2]/80" |
211 | | - asChild |
212 | | - > |
213 | | - <Link href="https://discord.gg/thirdweb"> |
214 | | - <DiscordIcon className="size-4" /> |
215 | | - <span>Join Discord</span> |
216 | | - </Link> |
217 | | - </Button> |
218 | | - </CardContent> |
219 | | - <CardFooter> |
220 | | - <p className="text-muted-foreground text-sm italic"> |
221 | | - Please note that our Discord server is managed by our community |
222 | | - moderators and does not offer official support. |
223 | | - </p> |
224 | | - </CardFooter> |
225 | | - </div> |
226 | | - <Image |
227 | | - src={discordIllustration} |
228 | | - alt="discord illustration" |
229 | | - className="ml-auto hidden max-w-64 object-cover p-6 md:block" |
230 | | - /> |
231 | | - </Card> |
232 | | - </div> |
233 | 188 | </main> |
234 | 189 | ); |
235 | 190 | } |
0 commit comments