'新增招聘
This commit is contained in:
21
app/[locale]/jobs/page.tsx
Normal file
21
app/[locale]/jobs/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import Header from "../../components/Header";
|
||||
import Footer from "../../components/Footer";
|
||||
import JobsContent from "./JobsContent";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "招聘 | Careers",
|
||||
description: "加入数字游民指南团队,我们正在招聘。",
|
||||
};
|
||||
|
||||
export default function JobsPage() {
|
||||
return (
|
||||
<>
|
||||
<Header />
|
||||
<main>
|
||||
<JobsContent />
|
||||
</main>
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user