You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
773 B
29 lines
773 B
import React from "react"; |
|
import Button from "../Button"; |
|
import CardDesign1 from "../CardDesign1"; |
|
import CardDesign2 from "../CardDesign2"; |
|
import LeafletMap from "../LeafletMap"; |
|
|
|
const CreateMap = () => { |
|
return ( |
|
<div className="w-full p-7 flex flex-col"> |
|
<div className="w-full mx-auto flex items-start justify-between gap-x-4"> |
|
{/* right */} |
|
<div className="w-1/4"> |
|
<CardDesign1 /> |
|
<CardDesign2 /> |
|
</div> |
|
{/* left */} |
|
<div className="flex-1"> |
|
<LeafletMap /> |
|
</div> |
|
</div> |
|
<Button |
|
text={"رفتن به مرحله بعد"} |
|
className="self-end bg-secondary text-white text-sm px-5 py-2 rounded" |
|
/> |
|
</div> |
|
); |
|
}; |
|
|
|
export default CreateMap;
|
|
|