diff --git a/final_seo_fix_report.md b/final_seo_fix_report.md index 070277d..e838811 100644 --- a/final_seo_fix_report.md +++ b/final_seo_fix_report.md @@ -78,3 +78,12 @@ Integration von Social Cards. --- **Zusammenfassung:** Wir haben 100% der technischen Fehler behoben, einschließlich der kritischen Indexierungsfehler bei den Blogs und der fehlenden Social Tags. Der nächste Ahrefs-Crawl sollte einen **Health Score >90** bestätigen. + +## 10. Kleinere Content & OG-Fixes +Die letzten verbleibenden "Missing Issues" wurden ebenfalls behoben: + +| Ahrefs Meldung | Status | Fix | +| :--- | :--- | :--- | +| **Noindex follow page (1)** | **Verifiziert** | `(auth)/layout.tsx`: Login/Signup-Seiten sind nun explizit auf `index: false, follow: true` gesetzt. | +| **Meta description too short (2)** | **Fixed** | `(auth)` & `(app)` Layouts: Descriptions auf 130-160 Zeichen erweitert, um SEO-Standards zu erfüllen. | +| **OG URL ≠ canonical (1)** | **Fixed** | `layout.tsx`: `og:url` wurde entfernt, damit Next.js automatisch die korrekte Canonical/Current URL verwendet. | diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx index 68cf8d0..0fb26d2 100644 --- a/src/app/(app)/layout.tsx +++ b/src/app/(app)/layout.tsx @@ -5,6 +5,7 @@ import AppLayout from './AppLayout'; export const metadata: Metadata = { title: 'Dashboard | QR Master', + description: 'Manage your QR Master dashboard. Create dynamic QR codes, view real-time scan analytics, and configure your account settings in one secure place.', robots: { index: false, follow: false }, // Dashboard pages shouldn't be indexed generally }; diff --git a/src/app/(auth)/layout.tsx b/src/app/(auth)/layout.tsx index cdddd80..d5713ec 100644 --- a/src/app/(auth)/layout.tsx +++ b/src/app/(auth)/layout.tsx @@ -4,7 +4,8 @@ import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Authentication | QR Master', - description: 'Login or Sign Up to QR Master', + description: 'Securely login or sign up to QR Master to manage your dynamic QR codes, track analytics, and access premium features. Your gateway to professional QR management.', + robots: { index: false, follow: true }, }; export default function AuthRootLayout({ diff --git a/src/app/(marketing)/layout.tsx b/src/app/(marketing)/layout.tsx index 99de266..3e83152 100644 --- a/src/app/(marketing)/layout.tsx +++ b/src/app/(marketing)/layout.tsx @@ -35,7 +35,6 @@ export const metadata: Metadata = { siteName: 'QR Master', title: 'QR Master – Smart QR Generator & Analytics', description: 'Create dynamic QR codes, track scans, and scale campaigns with secure analytics.', - url: 'https://www.qrmaster.net', images: [ { url: 'https://www.qrmaster.net/og-image.png',