File size: 2,740 Bytes
608f763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
af8d30c
 
 
 
 
 
 
 
 
 
608f763
4f8c547
 
 
 
608f763
 
2c23da5
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<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://lorastudio.co/metadata.png" />
	<meta property="og:url" content="https://lorastudio.co/" />
	<meta name="twitter:image" content="https://lorastudio.co/metadata.png" />
  <link rel="canonical" href="https://lorastudio.co/models" />
</svelte:head>

<div>
  <slot />
</div>