update 09/02

This commit is contained in:
2026-02-09 16:46:26 +07:00
parent cb4a4dc482
commit 87bddca6c3
21 changed files with 1515 additions and 34 deletions

View 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 />
</>
);
}

View 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 />;
}