Files
winninghunter/src/app/register/layout.tsx
T

13 lines
421 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}