update 09/02
This commit is contained in:
15
src/app/tuyen-dung/layout.tsx
Normal file
15
src/app/tuyen-dung/layout.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { ReactNode } from 'react';
|
||||
import Header from "@/components/other/otherHeader";
|
||||
import Footer from "@/components/other/otherFooter";
|
||||
import '@/styles/static_page.css';
|
||||
import '@/styles/tuyen_dung.css';
|
||||
|
||||
export default function TuyenDungLayout({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<>
|
||||
<Header />
|
||||
{children}
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
}
|
||||
11
src/app/tuyen-dung/page.tsx
Normal file
11
src/app/tuyen-dung/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import RecruitPage from "@/components/recruit";
|
||||
import type { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Tuyển dụng nhân sự - Cơ hội việc làm tại Hoàng Hà PC",
|
||||
description: "Tìm kiếm việc làm tại Hoàng Hà PC",
|
||||
};
|
||||
|
||||
export default function Home() {
|
||||
return <RecruitPage />;
|
||||
}
|
||||
Reference in New Issue
Block a user