import { Typography } from "@mui/material";
const HomePage = () => {
return (
<Typography variant="h1" textAlign="center" mt={10}>
Hello Clash!
</Typography>
);
};
export default HomePage;