From 8085da0863074c140e080a07dff569485893cde5 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Fri, 7 Nov 2025 10:15:14 +0100 Subject: [PATCH] Update nuxt.config.js to enhance SEO and social media integration; modify title and description for clarity, add Open Graph and Twitter meta tags, and include canonical link for improved indexing. Adjust keywords for better search visibility. --- index-iframe.html | 60 +++++++++++++++++++++++++++++++++++++++++++++++ nuxt.config.js | 31 ++++++++++++++++++++---- 2 files changed, 87 insertions(+), 4 deletions(-) create mode 100644 index-iframe.html diff --git a/index-iframe.html b/index-iframe.html new file mode 100644 index 0000000..fde1edd --- /dev/null +++ b/index-iframe.html @@ -0,0 +1,60 @@ + + + + + + + + + Harheimer Tischtennis-Club 1954 e.V. - Offizielle Website + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/nuxt.config.js b/nuxt.config.js index 314d0d0..9f3755b 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -33,20 +33,43 @@ export default defineNuxtConfig({ app: { head: { - title: 'Harheimer TC - Tischtennis in Frankfurt-Harheim', + title: 'Harheimer Tischtennis-Club 1954 e.V. - Offizielle Website', + htmlAttrs: { + lang: 'de' + }, meta: [ { charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' }, + { 'http-equiv': 'X-UA-Compatible', content: 'IE=edge' }, { name: 'description', - content: 'Willkommen beim Harheimer Tischtennis Club - Ihr Tischtennisverein in Frankfurt-Harheim. Mitglied werden, Training buchen, Turniere und mehr.' + content: 'Offizielle Website des Harheimer Tischtennis-Club 1954 e.V. - Informationen zu Mannschaften, Terminen, Training und Mitgliedschaft.' }, { name: 'keywords', - content: 'Tischtennis, Tischtennisclub, Frankfurt, Harheim, Sport, Verein, Mitgliedschaft, Pingpong' - } + content: 'Harheimer Tischtennis-Club, Tischtennis, Verein, Mannschaften, Training, Mitgliedschaft, Frankfurt, Harheim, Tischtennisclub, Sport, Pingpong' + }, + { + name: 'author', + content: 'Harheimer Tischtennis-Club 1954 e.V.' + }, + { + name: 'robots', + content: 'index, follow' + }, + // Open Graph / Facebook + { property: 'og:type', content: 'website' }, + { property: 'og:url', content: 'https://www.harheimertc.de/' }, + { property: 'og:title', content: 'Harheimer Tischtennis-Club 1954 e.V.' }, + { property: 'og:description', content: 'Offizielle Website des Harheimer Tischtennis-Club 1954 e.V.' }, + // Twitter + { property: 'twitter:card', content: 'summary_large_image' }, + { property: 'twitter:url', content: 'https://www.harheimertc.de/' }, + { property: 'twitter:title', content: 'Harheimer Tischtennis-Club 1954 e.V.' }, + { property: 'twitter:description', content: 'Offizielle Website des Harheimer Tischtennis-Club 1954 e.V.' } ], link: [ + { rel: 'canonical', href: 'https://www.harheimertc.de/' }, { rel: 'preconnect', href: 'https://fonts.googleapis.com' }, { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' }, {