Skip to content

Commit

Permalink
P6 fix (#21)
Browse files Browse the repository at this point in the history
* Cleaned up the redis connection stuff. Added archive menu items

* Added base archive functionality

* Fixed bug where unauthenticated users could archive conversations

* Added privacy and cookie policies

* policy updates

* Extracted contact form to component and added a contact route

* Updated policies, footer, about page and prerender settings

* Made it so prerendering is possible on some pages

* Increaased padding around the new chat button

* Adding a file that was missed in the last commit

* Added GA4 user id

* Changed from dynamic viewport to screen
  • Loading branch information
squeakyrobot committed Sep 27, 2023
1 parent 11d98c0 commit 6714a0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/lib/components/HeadMeta.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
</script>

<title>{title}</title>
<!-- TODO: Add canonical, beware of prerender -->
<!-- <link rel="canonical" href="https://bestconversationever.com/" /> -->
<meta name="description" content={description} />
<meta property="og:url" content={url} />
<meta property="og:type" content="website" />
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
<HeadMeta title={$page.data.pageTitle || 'Best Conversation Ever'} />
</svelte:head>

<div class="grid place-items-center h-[calc(100dvh)]">
<div class="grid place-items-center h-screen">
<slot />
</div>

0 comments on commit 6714a0a

Please sign in to comment.