import { Link } from 'react-router-dom' import MoonDot from '../../components/MoonDot.jsx' import { useSite } from '../../contexts/SiteContext.jsx' export default function Maintenance() { const { settings, contactEmail, siteShortName, heroImage } = useSite() const heroBg = `linear-gradient(180deg,rgba(11,15,20,0.55) 0%,rgba(11,15,20,0.74) 60%,rgba(11,15,20,0.92) 100%),url('${heroImage}')` const message = settings.maintenance_message || `${siteShortName} is in maintenance while we shape its towns, roads, and dungeons. The gates will open soon. Until then, follow along as the world wakes.` return (

Building beneath the moon

The world is not yet open

{message}

Read the news Contact us

{contactEmail}  ยท {' '} Admin

) }