mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 14:16:19 +00:00
meta tags
This commit is contained in:
parent
2956e7eede
commit
287746c918
3 changed files with 22 additions and 0 deletions
|
@ -14,6 +14,20 @@
|
||||||
data-website-id="3d9215d1-f15c-4797-abff-d621da254930"
|
data-website-id="3d9215d1-f15c-4797-abff-d621da254930"
|
||||||
></script>
|
></script>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
<title>Preciazo</title>
|
||||||
|
<meta
|
||||||
|
name="description"
|
||||||
|
content="Busca precios de productos en distintas cadenas de supermercados en Argentina."
|
||||||
|
/>
|
||||||
|
<meta content="index, follow" name="robots" />
|
||||||
|
<meta property="og:title" content="Preciazo" />
|
||||||
|
<meta
|
||||||
|
property="og:description"
|
||||||
|
content="Busca precios de productos en distintas cadenas de supermercados en Argentina."
|
||||||
|
/>
|
||||||
|
<meta property="og:url" content={`https://sitio2preciazoexperimento.nulo.in${data.pathname}`} />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<!-- {#key data.pathname}
|
<!-- {#key data.pathname}
|
||||||
|
|
|
@ -13,6 +13,10 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head>
|
||||||
|
<title>{data.precios[0].productos_descripcion} - Preciazo</title>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
<div class="flex min-h-screen flex-col">
|
<div class="flex min-h-screen flex-col">
|
||||||
<div class="flex items-stretch gap-3 px-2">
|
<div class="flex items-stretch gap-3 px-2">
|
||||||
<button on:click={() => window.history.back()}>
|
<button on:click={() => window.history.back()}>
|
||||||
|
|
|
@ -10,6 +10,10 @@
|
||||||
export let data: PageData;
|
export let data: PageData;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head>
|
||||||
|
<title>Resultados para "{data.query}" - Preciazo</title>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
<div class="mx-auto max-w-screen-sm p-4">
|
<div class="mx-auto max-w-screen-sm p-4">
|
||||||
<Button on:click={() => goto('/')} class="mb-2 gap-1" variant="outline">
|
<Button on:click={() => goto('/')} class="mb-2 gap-1" variant="outline">
|
||||||
<ArrowLeft />
|
<ArrowLeft />
|
||||||
|
|
Loading…
Reference in a new issue