diff --git a/src/components/misc/InfoClaim.tsx b/src/components/misc/InfoClaim.tsx index 5d1a363..8af94a4 100644 --- a/src/components/misc/InfoClaim.tsx +++ b/src/components/misc/InfoClaim.tsx @@ -29,44 +29,107 @@ */ "use client"; - -import { useState } from "react"; -import { TextCopyComp } from "./TextCopyComp"; -import { ChevronDown, ChevronUp } from "lucide-react"; +import { Tabs, TabsContent, TabsList, TabsTrigger } from "../ui/tabs"; +import { Badge } from "../ui/badge"; +import Link from "next/link"; +import { Alert, AlertDescription, AlertTitle } from "../ui/alert"; +import { ServerOff } from "lucide-react"; export function ShowInfo() { - const [open, setOpen] = useState(false); return (
- {open == false && ( -
setOpen(true)} - > - More info +
+ Choose a method: + +
+ + + CoreBoxx Recommended + + + MHSFPV + +
- )} - {open == true && ( - <> +

- By claiming your account, you can add Markdown descriptions and{" "} - custom color schemes to your server (and more), making it stand out. - To get started, join the server below on your Minecraft account. - Enter the code in chat in the website, and you will link your - account. You may need to go into the lobby and start the server. + + CoreBoxx + {" "} + has partnered with us to have an integrated account linking feature, + which is also open all day.


- +

+ + 1 + + + Join CoreBoxx + + CoreBoxx.minehut.gg + +

+

+ + 2 + + + + Link your account using /mhsf + + +

+

+ + 3 + + + Input the code returned below + +

+
+ + + + Server isn't online all day + + While joining MHSFPV, you may need to go into the lobby to start + the server to then join. + +
+

+ MHSFPV is a Minehut server dedicated to linking your account on + MHSF. +


-
setOpen(false)} - > - Less info -
- - )} +

+ + 1 + + + Join MHSFPV + + MHSFPV.minehut.gg + +

+

+ + 2 + + + Input the code in chat below + +

+
+
); }