diff --git a/app/(root)/forum/page.tsx b/app/(root)/forum/page.tsx index 755fa7f..312673e 100644 --- a/app/(root)/forum/page.tsx +++ b/app/(root)/forum/page.tsx @@ -1,7 +1,13 @@ import React from "react"; +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Forum - SVRJS", +}; + const Forum = () => { - return
Forum
; + return
Forum
; }; export default Forum; diff --git a/app/(root)/layout.tsx b/app/(root)/layout.tsx index 2a90436..a480ce1 100644 --- a/app/(root)/layout.tsx +++ b/app/(root)/layout.tsx @@ -3,19 +3,19 @@ import Navbar from "@/components/shared/Navbar"; import { Metadata } from "next"; export const metadata: Metadata = { - title: "Home - SVRJS", + title: "Home - SVRJS", }; export default function PageLayout({ - children, + children, }: { - children: React.ReactNode; + children: React.ReactNode; }) { - return ( -
- -
{children}
-
- ); + return ( +
+ +
{children}
+
+ ); } diff --git a/app/(root)/privacy-policy/page.tsx b/app/(root)/privacy-policy/page.tsx index 7620fd3..02224b3 100644 --- a/app/(root)/privacy-policy/page.tsx +++ b/app/(root)/privacy-policy/page.tsx @@ -2,6 +2,12 @@ import { PRIVACY_POLICY } from "@/constants/guidelines"; import React from "react"; import ReactMarkdown from "react-markdown"; +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Privacy Policy - SVRJS", +}; + const PrivacyPolicy = () => { return (
{ return (