Content Customization

Add game modes, features, and customize all text content.

Game Modes

Add, remove, or modify game mode cards.

src/config/site.config.ts
gameModes: {
  title: 'Game Modes',
  subtitle: 'Choose your adventure from our diverse selection',
  items: [
    {
      id: 'survival',
      icon: Swords,
      title: 'Survival',
      description: 'Classic survival with custom enchants and economy.',
      color: '34 197 94',  // Green
    },
    {
      id: 'skyblock',
      icon: Globe,
      title: 'SkyBlock',
      description: 'Build your empire on a floating island.',
      color: '59 130 246',  // Blue
    },
    // Add more here...
  ],
}

Adding a Game Mode

Copy an existing game mode and modify it:

{
  id: 'bedwars',        // Unique identifier
  icon: Castle,         // Lucide icon
  title: 'BedWars',     // Display name
  description: 'Protect your bed and destroy enemies!',
  color: '239 68 68',   // Red accent color
}

Available Icons

Icons come from Lucide React. Import them at the top of the config:

import { 
  Swords,    // Combat/PvP
  Castle,    // Factions/BedWars
  Globe,     // SkyBlock/World
  Shield,    // Protection/Prison
  Zap,       // Speed/Creative
  Gamepad2,  // Minigames
  Trophy,    // Competitions
  Users,     // Community
  Clock,     // Time-based
  Server,    // Technical
} from 'lucide-react'
More Icons
Browse all 1000+ icons at lucide.dev/icons

Features Section

Highlight your server's selling points:

features: {
  title: 'Why Choose Us',
  subtitle: 'Experience the difference with premium features',
  items: [
    {
      id: 'performance',
      icon: Server,
      title: 'High Performance',
      description: 'Enterprise hardware for lag-free gameplay.',
    },
    {
      id: 'community',
      icon: Users,
      title: 'Active Community',
      description: 'Join thousands of friendly players.',
    },
    {
      id: 'anticheat',
      icon: Shield,
      title: 'Anti-Cheat',
      description: 'Advanced protection for fair play.',
    },
    {
      id: 'support',
      icon: Zap,
      title: '24/7 Support',
      description: 'Staff team ready to help anytime.',
    },
  ],
}

Color Reference

Common RGB colors for game mode cards:

ColorRGB ValueBest For
Green34 197 94Survival, Eco, Nature
Blue59 130 246SkyBlock, Water, Ice
Red239 68 68PvP, Factions, Combat
Yellow250 204 21Prison, Gold, Premium
Purple139 92 246Magic, Creative, Special
Pink236 72 153Fun, Minigames, Events
Cyan34 211 238Tech, Futuristic
Orange249 115 22Fire, Nether, Action

Tips for Good Content

Keep descriptions short

15-20 words max. Players scan, not read.

Use action words

"Build your empire" beats "A building gamemode"

Highlight uniqueness

What makes YOUR server different? Lead with that.

Match colors to themes

Green for survival, red for PvP, blue for water themes.