enzostvs's picture
enzostvs HF staff
try to fix metadata
af8d30c
raw
history blame
2.73 kB
<script>
import { page } from "$app/stores";
</script>
<svelte:head>
<title>Explore Models</title>
{#if $page.url.searchParams.get('search')}
<meta property="og:title" content="All {$page.url.searchParams.get('search')} LoRAS on LoRA Studio" />
<meta property="twitter:title" content="All {$page.url.searchParams.get('search')} LoRAS on LoRA Studio" />
<meta property="og:description" content="Browse and explore all {$page.url.searchParams.get('search')} models" />
<meta property="twitter:description" content="Browse and explore all {$page.url.searchParams.get('search')} models" />
{:else if $page.url.searchParams.get('base_model')}
<meta property="og:title" content="Explore {$page.url.searchParams.get('base_model')?.toLocaleUpperCase()} LoRAs" />
<meta property="twitter:title" content="Explore {$page.url.searchParams.get('base_model')?.toLocaleUpperCase()} LoRAs" />
<meta
property="og:description"
content="LoRA Studio 🎨 is your new all-in-one generative art AI platform! Explore thousands of fun LoRA Models, share your AI-generated art and get involved with a dynamic community of creators! New models arrive every day, in direct connection with Hugging Face! πŸ€—"
/>
<meta
name="twitter:description"
content="LoRA Studio 🎨 is your new all-in-one generative art AI platform! Explore thousands of fun LoRA Models, share your AI-generated art and get involved with a dynamic community of creators! New models arrive every day, in direct connection with Hugging Face! πŸ€—"
/>
{:else}
<meta property="og:title" content="Explore Models on LoRA Studio" />
<meta property="twitter:title" content="Explore Models on LoRA Studio" />
<meta
property="og:description"
content="LoRA Studio 🎨 is your new all-in-one generative art AI platform! Explore thousands of fun LoRA Models, share your AI-generated art and get involved with a dynamic community of creators! New models arrive every day, in direct connection with Hugging Face! πŸ€—"
/>
<meta
name="twitter:description"
content="LoRA Studio 🎨 is your new all-in-one generative art AI platform! Explore thousands of fun LoRA Models, share your AI-generated art and get involved with a dynamic community of creators! New models arrive every day, in direct connection with Hugging Face! πŸ€—"
/>
{/if}
<meta property="og:image" content="https://enzostvs-lora-studio.hf.space/metadata.png" />
<meta property="og:url" content="https://enzostvs-lora-studio.hf.space/" />
<meta name="twitter:image" content="https://enzostvs-lora-studio.hf.space/metadata.png" />
</svelte:head>
<div>
<slot />
</div>