|
1 | | -import Accordion from '../_components/Accordion'; |
| 1 | +import { |
| 2 | + Accordion, |
| 3 | + AccordionContent, |
| 4 | + AccordionItem, |
| 5 | + AccordionTrigger, |
| 6 | +} from '@/components/ui/accordion'; |
2 | 7 |
|
3 | 8 | export default function FAQ() { |
4 | | - return ( |
5 | | - <main className="flex flex-1 flex-col items-center px-4 py-20 md:justify-center md:py-0"> |
6 | | - <div className="mb-16 max-w-3xl w-full"> |
7 | | - <h1 className="text-4xl font-bold md:text-5xl">FAQ</h1> |
8 | | - <p className="mt-4 text-gray-400">Frequently Asked Questions</p> |
9 | | - <div className="mt-8 space-y-4"> |
10 | | - <Accordion question="What is Cobalt?"> |
11 | | - Cobalt is a mod for Minecraft 1.21.10 which speeds up the slow progression of Hypixel Skyblock; it is currently in development and is not yet available for download. |
12 | | - </Accordion> |
13 | | - <Accordion question="What is a Cobalt Addon?"> |
14 | | - An addon is a plugin for Cobalt which extends Cobalt's functionality by adding new features and commands. |
15 | | - </Accordion> |
16 | | - <Accordion question="Does Cobalt have a discord?"> |
17 | | - Yes, Cobalt has a discord server which can be found at <a href="https://discord.com/invite/GAhS8UfDyy" className="text-blue-400 hover:underline">discord.gg/GAhS8UfDyy</a>. |
18 | | - </Accordion> |
19 | | - <Accordion question="Is Cobalt safe to use?"> |
20 | | - The base mod and approved addons are safe from malware. However, Cobalt violates Hypixel's rules therefore we try our best to prevent bans, we cannot ensure that Cobalt will not cause you to get banned. |
21 | | - </Accordion> |
22 | | - <Accordion question="How do I install Cobalt?"> |
23 | | - As of right now, Cobalt is not available for download, once it is released, you can find the installation instructions here: First, install <a href="https://fabricmc.net/use/" className="text-blue-400 hover:underline">Fabric Loader</a> for Minecraft 1.21.10. Then, download the Cobalt mod file and place it in your <code className="bg-white/10 px-1.5 py-0.5 rounded text-sm">mods</code> folder located in your <code className="bg-white/10 px-1.5 py-0.5 rounded text-sm">.minecraft</code> directory. Launch Minecraft with the Fabric profile and you're ready to go. |
24 | | - </Accordion> |
25 | | - <Accordion question="Is Cobalt free?"> |
26 | | - Yes, Cobalt is free to use. |
27 | | - </Accordion> |
28 | | - <Accordion question="Can I contribute to Cobalt?"> |
29 | | - Not currently, after the mod is open source we will be open for contributions. |
30 | | - </Accordion> |
31 | | - <Accordion question="Will I get banned for using Cobalt?"> |
32 | | - While we work hard to prevent bans, we cannot ensure that Cobalt will not cause you to get banned. |
33 | | - </Accordion> |
34 | | - </div> |
35 | | - </div> |
36 | | - </main> |
37 | | - ) |
| 9 | + return ( |
| 10 | + <main className="flex flex-1 flex-col items-center px-4 py-20 md:justify-center md:py-0"> |
| 11 | + <div className="mb-16 max-w-3xl w-full"> |
| 12 | + <h1 className="text-4xl font-bold md:text-5xl">FAQ</h1> |
| 13 | + <p className="mt-4 text-gray-400"> |
| 14 | + Frequently Asked Questions |
| 15 | + </p> |
| 16 | + <Accordion type="single" collapsible className="mt-8 w-full"> |
| 17 | + <AccordionItem value="item-1"> |
| 18 | + <AccordionTrigger>What is Cobalt?</AccordionTrigger> |
| 19 | + <AccordionContent> |
| 20 | + Cobalt is a mod for Minecraft 1.21.10 which speeds up |
| 21 | + the slow progression of Hypixel Skyblock; it is |
| 22 | + currently in development and is not yet available for |
| 23 | + download. |
| 24 | + </AccordionContent> |
| 25 | + </AccordionItem> |
| 26 | + <AccordionItem value="item-2"> |
| 27 | + <AccordionTrigger> |
| 28 | + What is a Cobalt Addon? |
| 29 | + </AccordionTrigger> |
| 30 | + <AccordionContent> |
| 31 | + An addon is a plugin for Cobalt which extends |
| 32 | + Cobalt's functionality by adding new features and |
| 33 | + commands. |
| 34 | + </AccordionContent> |
| 35 | + </AccordionItem> |
| 36 | + <AccordionItem value="item-3"> |
| 37 | + <AccordionTrigger> |
| 38 | + Does Cobalt have a discord? |
| 39 | + </AccordionTrigger> |
| 40 | + <AccordionContent> |
| 41 | + Yes, Cobalt has a discord server which can be found at{' '} |
| 42 | + <a |
| 43 | + href="https://discord.com/invite/GAhS8UfDyy" |
| 44 | + className="text-blue-400 hover:underline" |
| 45 | + > |
| 46 | + discord.gg/GAhS8UfDyy |
| 47 | + </a> |
| 48 | + . |
| 49 | + </AccordionContent> |
| 50 | + </AccordionItem> |
| 51 | + <AccordionItem value="item-4"> |
| 52 | + <AccordionTrigger> |
| 53 | + Is Cobalt safe to use? |
| 54 | + </AccordionTrigger> |
| 55 | + <AccordionContent> |
| 56 | + The base mod and approved addons are safe from malware. |
| 57 | + However, Cobalt violates Hypixel's rules therefore |
| 58 | + we try our best to prevent bans, we cannot ensure that |
| 59 | + Cobalt will not cause you to get banned. |
| 60 | + </AccordionContent> |
| 61 | + </AccordionItem> |
| 62 | + <AccordionItem value="item-5"> |
| 63 | + <AccordionTrigger> |
| 64 | + How do I install Cobalt? |
| 65 | + </AccordionTrigger> |
| 66 | + <AccordionContent> |
| 67 | + As of right now, Cobalt is not available for download, |
| 68 | + once it is released, you can find the installation |
| 69 | + instructions here: First, install{' '} |
| 70 | + <a |
| 71 | + href="https://fabricmc.net/use/" |
| 72 | + className="text-blue-400 hover:underline" |
| 73 | + > |
| 74 | + Fabric Loader |
| 75 | + </a>{' '} |
| 76 | + for Minecraft 1.21.10. Then, download the Cobalt mod |
| 77 | + file and place it in your{' '} |
| 78 | + <code className="bg-white/10 px-1.5 py-0.5 rounded text-sm"> |
| 79 | + mods |
| 80 | + </code>{' '} |
| 81 | + folder located in your{' '} |
| 82 | + <code className="bg-white/10 px-1.5 py-0.5 rounded text-sm"> |
| 83 | + .minecraft |
| 84 | + </code>{' '} |
| 85 | + directory. Launch Minecraft with the Fabric profile and |
| 86 | + you're ready to go. |
| 87 | + </AccordionContent> |
| 88 | + </AccordionItem> |
| 89 | + <AccordionItem value="item-6"> |
| 90 | + <AccordionTrigger>Is Cobalt free?</AccordionTrigger> |
| 91 | + <AccordionContent> |
| 92 | + Yes, Cobalt is free to use. |
| 93 | + </AccordionContent> |
| 94 | + </AccordionItem> |
| 95 | + <AccordionItem value="item-7"> |
| 96 | + <AccordionTrigger> |
| 97 | + Can I contribute to Cobalt? |
| 98 | + </AccordionTrigger> |
| 99 | + <AccordionContent> |
| 100 | + Not currently, after the mod is open source we will be |
| 101 | + open for contributions. |
| 102 | + </AccordionContent> |
| 103 | + </AccordionItem> |
| 104 | + <AccordionItem value="item-8"> |
| 105 | + <AccordionTrigger> |
| 106 | + Will I get banned for using Cobalt? |
| 107 | + </AccordionTrigger> |
| 108 | + <AccordionContent> |
| 109 | + While we work hard to prevent bans, we cannot ensure |
| 110 | + that Cobalt will not cause you to get banned. |
| 111 | + </AccordionContent> |
| 112 | + </AccordionItem> |
| 113 | + </Accordion> |
| 114 | + </div> |
| 115 | + </main> |
| 116 | + ); |
38 | 117 | } |
0 commit comments