mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
Remove <p> wrapping <ul>
This commit is contained in:
parent
9a51764c0d
commit
c226438f5e
1 changed files with 9 additions and 11 deletions
|
@ -42,17 +42,15 @@ const LandingActionEventsList = ({ data }: { data: Event[] }) => {
|
||||||
<p>
|
<p>
|
||||||
{t("landingEventsDescription")}
|
{t("landingEventsDescription")}
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<ul className={style.landingActionEventsList}>
|
||||||
<ul className={style.landingActionEventsList}>
|
{data.map(e => (
|
||||||
{data.map(e => (
|
<li key={e.slug}>
|
||||||
<li key={e.slug}>
|
<Link href={`/events/${e.slug}`}>
|
||||||
<Link href={`/events/${e.slug}`}>
|
{e.name}
|
||||||
{e.name}
|
</Link>
|
||||||
</Link>
|
</li>
|
||||||
</li>
|
))}
|
||||||
))}
|
</ul>
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
<p>
|
<p>
|
||||||
<label htmlFor="festa-landing-action-events-form-create-name">
|
<label htmlFor="festa-landing-action-events-form-create-name">
|
||||||
{t("landingEventsCreateDescription")}
|
{t("landingEventsCreateDescription")}
|
||||||
|
|
Loading…
Reference in a new issue