import { Container, Typography, Button, Card, CardContent, Chip } from '@mui/material' import HomeIcon from '@mui/icons-material/Home' import SearchIcon from '@mui/icons-material/Search' export default function Home() { return (
Property Match Find your ideal property
{(['Buy', 'Rent', 'Invest'] as const).map((category) => ( {category} a Property Browse listings available for {category.toLowerCase()} in your area. ))}
) }