feat: add SEO metadata and profile schema

This commit is contained in:
Chinraj P
2026-06-18 14:37:55 +05:30
parent 9ebc55de73
commit 376051c41e
31 changed files with 1428 additions and 336 deletions

19
src/app/logout/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Logout | RE-Quest",
description: "Securely sign out from your RE-Quest account.",
robots: {
index: false,
follow: false,
},
};
export default function LogoutLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}