Skip to content

Commit

Permalink
✨ Added page specific titles
Browse files Browse the repository at this point in the history
  • Loading branch information
nwrenger committed Jan 3, 2024
1 parent 8dc3cb4 commit a26f197
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
import { CodeBlock } from '@skeletonlabs/skeleton';
</script>

<svelte:head>
<title>Home</title>
<meta name="description" content="Homepage" />
</svelte:head>

<div class="container h-full mx-auto flex justify-center items-center">
<div class="space-y-8 flex flex-col lg:w-2/3 w-11/12 pt-6 pb-6">
<h1 class="h1">Welcome to <span class="rotate-180 inline-block">flip</span></h1>
Expand Down
5 changes: 5 additions & 0 deletions src/routes/builder/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
import Grid from './Grid.svelte';
</script>

<svelte:head>
<title>Builder</title>
<meta name="description" content="Website's specific UI-Builder" />
</svelte:head>

<h2 class="h2 m-2">{$views.views.length != 0 ? `View ${$views.current + 1}` : 'No Views!'}</h2>
<div
class="card p-4 m-2 {$views.views.length != 0
Expand Down

0 comments on commit a26f197

Please sign in to comment.