mirror of
https://github.com/beilunyang/moemail.git
synced 2026-09-07 00:06:44 +08:00
feat: add new content pages
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import { Header } from "@/components/layout/header"
|
||||
import { TermsContent } from "@/components/legal/terms-content"
|
||||
import { getTranslations } from "next-intl/server"
|
||||
|
||||
export async function generateMetadata({ params }: { params: Promise<{ locale: string }> }) {
|
||||
const { locale } = await params
|
||||
const t = await getTranslations({ locale, namespace: "common" })
|
||||
return {
|
||||
title: `${t("nav.terms")} - ${t("app.name")} `
|
||||
}
|
||||
}
|
||||
|
||||
export default function TermsPage() {
|
||||
return (
|
||||
<div className="min-h-screen bg-background">
|
||||
<Header />
|
||||
<main className="container mx-auto px-4 py-24">
|
||||
<div className="max-w-3xl mx-auto">
|
||||
<TermsContent />
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user