import { useNavigate } from 'react-router-dom'; import { Button } from '@astryxdesign/core/Button'; import { Text, Heading } from '@astryxdesign/core/Text'; import { Construction, Home } from 'lucide-react'; export default function UnderConstruction() { const navigate = useNavigate(); return (
Under Construction
Hey! Please check out this site later. We are doing some maintenance on it right now.
); }