From 3620256722218962a2b439fbd28a437d2f827506 Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Thu, 19 Jun 2025 11:15:13 -0500 Subject: [PATCH] Update signup link to register and refine meta description and Open Graph tags --- src/routes/+page.svelte | 2 +- src/routes/+page.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 361cac1..16483b9 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -28,7 +28,7 @@ {:else} diff --git a/src/routes/+page.ts b/src/routes/+page.ts index b09e3f4..506a9ed 100644 --- a/src/routes/+page.ts +++ b/src/routes/+page.ts @@ -3,10 +3,10 @@ import type { MetaTagsProps } from 'svelte-meta-tags'; export const load = () => { const pageMetaTags = Object.freeze({ title: 'Home', - description: 'Launch your SaaS project with our comprehensive SvelteKit template. Built with Svelte 5, Supabase authentication, modern UI components, and everything you need to get started.', + description: 'Launch your SaaS project with a comprehensive SvelteKit template. Built with Svelte 5, Supabase authentication, modern UI components, and everything you need to get started.', openGraph: { - title: 'Sveltey - Launch Your SaaS Project Fast', - description: 'Launch your SaaS project with our comprehensive SvelteKit template. Built with Svelte 5, Supabase authentication, modern UI components, and everything you need to get started.' + title: 'Launch Your SaaS Project Fast', + description: 'Launch your SaaS project with a comprehensive SvelteKit template. Built with Svelte 5, Supabase authentication, modern UI components, and everything you need to get started.' } }) satisfies MetaTagsProps;