> ## Documentation Index
> Fetch the complete documentation index at: https://vctdocs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Discover the official documentation for the Voiid Countdown Timer plugin!

export const HeroCard = ({filename, title, description, href}) => {
  return <a className="group cursor-pointer pb-8" href={href}>
      <img src={`/images/introduction/${filename}.png`} className="block dark:hidden pointer-events-none group-hover:scale-105 transition-all duration-100" />
      <img src={`/images/introduction/${filename}-dark.png`} className="pointer-events-none group-hover:scale-105 transition-all duration-100 hidden dark:block" />
      <h3 className="mt-5 text-gray-900 dark:text-zinc-50 font-medium">
        {title}
      </h3>
      <span className="mt-1.5">{description}</span>
    </a>;
};

<div className="relative">
  <div className="absolute top-0 lg:-top-16 left-0 right-0 pointer-events-none -z-10">
    <img src="https://mintcdn.com/vctdocs/SIxYkyzW4fmlCols/images/introduction/background.png?fit=max&auto=format&n=SIxYkyzW4fmlCols&q=85&s=e5db8705003c4ccdb6b7df0072da8089" className="block" width="2304" height="776" data-path="images/introduction/background.png" />
  </div>

  <div className="px-4 py-16 lg:py-48 lg:pb-24 max-w-3xl mx-auto">
    <h1 className="block text-4xl font-medium text-center text-gray-900 dark:text-zinc-50 tracking-tight">
      Voiid Countdown Timer Documentation
    </h1>

    <div className="max-w-xl mx-auto px-4 mt-4 text-lg text-center text-gray-500 dark:text-zinc-500">
      Welcome to the documentation for the Voiid Countdown Timer (abbreviated VCT) plugin. This wiki provides detailed information about the plugin's features, installation, configuration, commands, and more.
    </div>

    <div className="max-w-xl mx-auto px-2 mt-4 flex justify-center gap-1 flex-wrap">
      <a href="https://ko-fi.com/maxxvoiid/donate" target="_blank" rel="noopener noreferrer">
        <img src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/donate/kofi-plural_vector.svg" alt="Support us on Ko-fi!" />
      </a>

      <a href="https://modrinth.com/datapack/voiid-countdown-timer" target="_blank" rel="noopener noreferrer">
        <img src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/available/modrinth_vector.svg" alt="Download on Modrinth" />
      </a>

      <a href="https://curseforge.com/minecraft/bukkit-plugins/voiid-countdown-timer-for-bukkit" target="_blank" rel="noopener noreferrer">
        <img src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/available/curseforge_vector.svg" alt="Download on CurseForge" />
      </a>
    </div>

    <div className="max-w-xl mx-auto px-4 mt-4 flex justify-center gap-1 flex-wrap">
      <a href="https://github.com/Voiid-Studios/voiidstudios/blob/main/LICENSE.md" target="_blank" rel="noopener noreferrer">
        <img src="https://i.himag.es/i/a77c6-slc87/1/vspl_license.svg" alt="View the Voiid Studios Public License" />
      </a>

      <a href="https://crowdin.com/project/voiidcountdowntimer" target="_blank" rel="noopener noreferrer">
        <img src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/compact/translate/crowdin_vector.svg" alt="Translate VCT on Crowdin" />
      </a>

      <a href="https://github.com/Voiid-Studios/voiidcountdown" target="_blank" rel="noopener noreferrer">
        <img src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/compact-minimal/available/github_vector.svg" alt="View VCT Source Code on GitHub" />
      </a>
    </div>

    <div className="max-w-xl mx-auto mt-4 flex justify-center gap-1 flex-wrap">
      <Info>
        <b>Development is currently slower than usual.</b>

        VCT is maintained by a single developer, and due to personal time constraints, updates may take longer to arrive. The project is still active and will continue to receive improvements in the future.
      </Info>
    </div>

    <div className="px-6 lg:px-0 mt-12 lg:mt-4 grid sm:grid-cols-2 gap-x-6 gap-y-4">
      <HeroCard filename="bolt" title="Quick Overview" description="Start learning about everything VCT has to offer with our quick overview" href="/get-started/quick-overview" />

      <HeroCard filename="blocks" title="Installation or Updation" description="Get started with VCT in minutes with our guide to installing & updating" href="/get-started/installation-or-updation" />

      <HeroCard filename="wrench" title="Configuration" description="Change many aspects of VCT with our configuration guide" href="/usage-guide/configuration" />

      <HeroCard filename="bubble" title="Commands & Perms" description="Review the commands and permissions that VCT has in our commands & perms guide" href="/usage-guide/commands-permissions" />

      <HeroCard filename="terminal" title="API Reference" description="Use the VCT API in other projects with our API guide" href="/api-docs/introduction" />

      <HeroCard filename="history" title="Changelog" description="Check out all the VCT changes in each version in the changelogs!" href="/changelogs/stable" />
    </div>
  </div>
</div>
