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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user