Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Mar 2, 2025
1 parent bbdbdc8 commit 0331919
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/js/components/App/pages/RealEstateView/RealEstateCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@ const RealEstateCard = ({ realEstate }: Props) => (
<Container.Card>
<Container.FlexCols className="gap-4">
<Container.FlexResponsiveRow className="gap-8">
<Container.Container>
<img
src={realEstate.image}
alt={realEstate.name}
className="w-full sm:object-cover sm:h-[300px] rounded-lg"
width={300}
height={300}
/>
</Container.Container>
{realEstate.image && (
<Container.Container>
<img
src={realEstate.image}
alt={realEstate.name}
className="w-full sm:object-cover sm:h-[300px] rounded-lg"
width={300}
height={300}
/>
</Container.Container>
)}
<Container.FlexCols className="gap-2">
<Heading.H1L>{realEstate.name}</Heading.H1L>
<Container.Container className="text-sm text-gray-500">
Expand Down

0 comments on commit 0331919

Please sign in to comment.