import {
Box,
Typography,
} from '@mui/material'
export default function WebsiteBuilder() {
return (
<Box sx={{ display: 'flex', height: '100vh' }}>
<Typography variant="h4">Website Builder</Typography>
<Typography variant="body2">UI components will be added here</Typography>
</Box>
)
}