Damn, i dont have any way to test this outside of prod. kill me later rocord
Some checks failed
Deploy to Server / deploy (push) Failing after 32s

This commit is contained in:
Christopher Cookman 2025-08-11 02:48:17 -06:00
parent 3b29b9dca2
commit 08b6bfe192
4 changed files with 1513 additions and 8 deletions

1509
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -26,7 +26,7 @@
"date-fns": "^4.1.0",
"framer-motion": "^12.5.0",
"lucide-react": "^0.468.0",
"next": "15.1.1",
"next": "^15.1.1",
"node-fetch": "^3.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",

View file

@ -43,6 +43,15 @@ export default function Footer() {
Conferences
<span className="absolute bottom-0 left-0 w-0 h-0.5 bg-blue-400 transition-all duration-300 group-hover:w-full" />
</Link>
<Link
href="https://cloud.litenet.tel/apps/forms/embed/bmYb9M9RYkykNdFs38o73bZi"
target="_blank"
rel="noopener noreferrer"
className="hover:text-blue-400 transition-colors duration-300 relative group"
>
Ban Appeal
<span className="absolute bottom-0 left-0 w-0 h-0.5 bg-blue-400 transition-all duration-300 group-hover:w-full" />
</Link>
</nav>
{/* Legal links */}

View file

@ -17,7 +17,6 @@ const modTeam = [
{ name: 'Vince', ext: '1101', image: '/vince.webp', discord: '@maybvince', role: 'Moderator' },
{ name: 'Theliftoperator', ext: '1134', image: '/theliftoperator.webp', discord: '@theliftoperator', role: 'Moderator' },
{ name: 'Nik', ext: '1008', image: '/nottimwakefield.webp', discord: '@nottimwakefield', role: 'Moderator' },
{ name: 'Lunar', ext: '1072', image: '/lunar.webp', discord: '@atwnk', role: 'Moderator' },
]
function TeamMember({ name, ext, image, discord, role }) {