| 12345678910111213141516171819202122232425 |
- import { Outlet } from "react-router-dom";
- const BusinessLayout = () => {
- return (
- <>
- <div
- className="w-full h-[360px] bg-cover bg-center relative"
- style={{ backgroundImage: "url('/사업소개.jpg')" }}
- >
- <div className="absolute inset-0 bg-black/40" />
- <div className="relative max-w-7xl top-10 h-full mx-auto flex flex-col justify-center gap-2">
- <div className="text-white text-4xl font-bold font-['Inter']">사업소개</div>
- <div className="text-white text-lg font-normal font-['Inter']">
- 반도산전의 사업을 소개합니다.
- </div>
- </div>
- </div>
- {/* 하위 라우트 렌더링 */}
- <Outlet />
- </>
- );
- };
- export default BusinessLayout;
|