BusinessLayout.jsx 896 B

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