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