diff --git a/src/routes/[country]/[location]/index.svelte b/src/routes/[country]/[location]/index.svelte index de0a199..c428c2f 100644 --- a/src/routes/[country]/[location]/index.svelte +++ b/src/routes/[country]/[location]/index.svelte @@ -15,6 +15,7 @@ // Components import Metas from '$components/Metas.svelte' import PageTransition from '$components/PageTransition.svelte' + import Image from '$components/atoms/Image.svelte' import Button from '$components/atoms/Button.svelte' import IconEarth from '$components/atoms/IconEarth.svelte' import House from '$components/molecules/House.svelte' @@ -322,6 +323,19 @@ {/if} + + {#if location.acknowledgement} +
+ Flag of {location.country.name} +

{location.acknowledgement}

+
+ {/if} {:else}
diff --git a/src/routes/[country]/[location]/index.ts b/src/routes/[country]/[location]/index.ts index f504f86..e53d656 100644 --- a/src/routes/[country]/[location]/index.ts +++ b/src/routes/[country]/[location]/index.ts @@ -44,8 +44,10 @@ export async function GET ({ params }: RequestEvent): Promise