"use client"; import Image from "next/image"; interface DiscordBannerPermanentProps { inviteLink: string; serverName?: string; description?: string; ctaText?: string; } export function DiscordBannerPermanent({ inviteLink, serverName = "Avalon", description = "Looking for somewhere more... interesting? Avalon's an enchanted collective of botmakers who refuse to be boring 🌿 Come play with us~ (18+ only, darling)", ctaText = "Join Server", }: DiscordBannerPermanentProps) { return (
{/* Background Image */}
Background
{/* Content */}
{/* Chat Message Style */}
{/* Morgana Avatar */}
Morgana
{/* Message Content */}
Morgana Today at {new Date().toLocaleTimeString('en-US', { hour: 'numeric', minute: '2-digit', hour12: true })}
{description}
{/* Server Invite Embed */}
You've been invited to join a server
Avalon
{serverName}
{ctaText}
{/* Trash Panda Icon - Bottom Right */}
); }