diff --git a/app/blog/page.tsx b/app/blog/page.tsx index 2bfa057..c615591 100644 --- a/app/blog/page.tsx +++ b/app/blog/page.tsx @@ -3,6 +3,11 @@ import PostCardLoading from './post-card-loading'; import { PostPerPage, postLists } from 'lib/posts'; import { Fragment, Suspense } from 'react'; import Pagination from 'components/rua/rua-pagination'; +import { Metadata } from 'next'; + +export const metadata: Metadata = { + title: 'RUA - Blog', +}; export default async function Page() { const allPosts = await postLists(); diff --git a/app/gists/page.tsx b/app/gists/page.tsx index 01da2f6..88a45c9 100644 --- a/app/gists/page.tsx +++ b/app/gists/page.tsx @@ -5,8 +5,12 @@ import { Suspense } from 'react'; import Pagination from 'components/rua/rua-pagination'; import FileContent from './file-content'; import UserInfoLoading from './user-info-skeleton'; +import { Metadata } from 'next'; export const revalidate = 600; +export const metadata: Metadata = { + title: 'RUA - Gists', +}; export default async function Page() { const gists = await getGists(); diff --git a/app/projects/page.tsx b/app/projects/page.tsx index df6f290..403f16d 100644 --- a/app/projects/page.tsx +++ b/app/projects/page.tsx @@ -10,6 +10,11 @@ import { VscGithubInverted } from 'react-icons/vsc'; import { HiPhoto } from 'react-icons/hi2'; import clsx from 'clsx'; import ProjectCard from './project-card'; +import { Metadata } from 'next'; + +export const metadata: Metadata = { + title: 'RUA - Projects', +}; const iconMap = { gitea: ,