feat: add SEO and GEO discovery metadata

This commit is contained in:
2026-08-11 11:59:14 +03:00
parent 4fd7c8d457
commit fdff6a0a26
12 changed files with 355 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Ücretsiz Hesap Oluştur",
description: "AdSeeQ ücretsiz hesabınızı oluşturun ve reklam araştırmasına başlayın.",
alternates: { canonical: "/register" },
robots: { index: false, follow: false, nocache: true }
};
export default function RegisterLayout({ children }: { children: React.ReactNode }) {
return children;
}