fix UI issues
This commit is contained in:
parent
b612711883
commit
d53a528f1c
|
|
@ -71,6 +71,13 @@ export default async function EventPage({
|
|||
visit={data?.url_web ? data?.url_web : data?.web_site}
|
||||
/>
|
||||
) : null}
|
||||
|
||||
{data?.description ?? <div className="flex flex-col lg:flex-row gap-6">
|
||||
<h4 className="text_24 lg:flex-[0_0_392px]">
|
||||
{t("description")}
|
||||
</h4>
|
||||
<p className="flex-1 text_16">{data.description}</p>
|
||||
</div>}
|
||||
</div>
|
||||
|
||||
<Image
|
||||
|
|
@ -82,15 +89,9 @@ export default async function EventPage({
|
|||
/>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col gap-8">
|
||||
{data?.description ?? <div className="flex flex-col lg:flex-row gap-6">
|
||||
<h4 className="text_24 lg:flex-[0_0_392px]">
|
||||
{t("description")}
|
||||
</h4>
|
||||
<p className="flex-1 text_16">{data.description}</p>
|
||||
</div>}
|
||||
{/* <div className="flex flex-col gap-8">
|
||||
|
||||
{/* {data?.event_topic && (
|
||||
{data?.event_topic && (
|
||||
<>
|
||||
<hr className="border-OUTLINE_VAR" />
|
||||
|
||||
|
|
@ -104,8 +105,8 @@ export default async function EventPage({
|
|||
/>
|
||||
</div>
|
||||
</>
|
||||
)} */}
|
||||
</div>
|
||||
)}
|
||||
</div> */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue