Files
2026-03-08 12:30:50 -05:00

21 lines
497 B
TypeScript

import type { Metadata } from "next";
import Header from "../../components/Header";
import Footer from "../../components/Footer";
import AboutContent from "./AboutContent";
export const metadata: Metadata = {
title: "关于我们 | About Us",
description: "认识数字游民指南背后的团队,关注我们的社交平台。",
};
export default function AboutPage() {
return (
<>
<Header />
<main>
<AboutContent />
</main>
<Footer />
</>
);
}