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:
| Color | RGB Value | Best For |
|---|---|---|
| Green | 34 197 94 | Survival, Eco, Nature |
| Blue | 59 130 246 | SkyBlock, Water, Ice |
| Red | 239 68 68 | PvP, Factions, Combat |
| Yellow | 250 204 21 | Prison, Gold, Premium |
| Purple | 139 92 246 | Magic, Creative, Special |
| Pink | 236 72 153 | Fun, Minigames, Events |
| Cyan | 34 211 238 | Tech, Futuristic |
| Orange | 249 115 22 | Fire, 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.