Seobility und Ahrefs 100/100 score fixes

This commit is contained in:
Timo Knuth
2026-01-13 09:59:40 +01:00
parent ffe4cca5e5
commit 4fc1dcd7d8
9 changed files with 103 additions and 3682 deletions

View File

@@ -3,7 +3,9 @@ import type { Metadata } from 'next';
import LoginClientPage from './ClientPage';
export const metadata: Metadata = {
title: 'Login to QR Master | Access Your Dashboard',
title: {
absolute: 'Login to QR Master | Access Your Dashboard'
},
description: 'Sign in to QR Master to create, manage, and track your QR codes. Access your dashboard and view analytics.',
alternates: {
canonical: 'https://www.qrmaster.net/login',
@@ -17,6 +19,7 @@ export default function LoginPage() {
<div className="sr-only">
<h2>Secure Dashboard Access</h2>
<p>Log in to manage your dynamic QR codes, view scan analytics, and update destination URLs instantly.</p>
<a href="/">Back to Home</a>
</div>
<LoginClientPage />
</>

View File

@@ -3,7 +3,9 @@ import type { Metadata } from 'next';
import SignupClientPage from './ClientPage';
export const metadata: Metadata = {
title: 'Create Free Account | QR Master',
title: {
absolute: 'Create Free Account | QR Master'
},
description: 'Sign up for QR Master to create free QR codes. Start with tracking, customization, and bulk generation features.',
alternates: {
canonical: 'https://www.qrmaster.net/signup',
@@ -17,6 +19,7 @@ export default function SignupPage() {
<div className="sr-only">
<h2>Get Started Free</h2>
<p>Create your account today. No credit card required for the free tier. Start generating trackable QR codes in minutes.</p>
<a href="/">Back to Home</a>
</div>
<SignupClientPage />
</>