diff options
| -rw-r--r-- | app/[lng]/evcp/(evcp)/layout.tsx | 1 | ||||
| -rw-r--r-- | components/layout/Header.tsx | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/app/[lng]/evcp/(evcp)/layout.tsx b/app/[lng]/evcp/(evcp)/layout.tsx index 9dc39f7b..82b53307 100644 --- a/app/[lng]/evcp/(evcp)/layout.tsx +++ b/app/[lng]/evcp/(evcp)/layout.tsx @@ -5,6 +5,7 @@ import { SiteFooter } from '@/components/layout/Footer'; export default function EvcpLayout({ children }: { children: ReactNode }) { return ( <div className="relative flex min-h-svh flex-col bg-background"> + {/* <div className="relative flex min-h-svh flex-col bg-slate-100 "> */} <Header /> <main className="flex flex-1 flex-col"> <div className='container-wrapper'> diff --git a/components/layout/Header.tsx b/components/layout/Header.tsx index 6747e549..6d70e6b2 100644 --- a/components/layout/Header.tsx +++ b/components/layout/Header.tsx @@ -61,7 +61,8 @@ export function Header() { return ( <> - <header className="border-grid sticky top-0 z-40 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60"> + {/* <header className="border-grid sticky top-0 z-40 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60"> */} + <header className="border-grid sticky top-0 z-40 w-full border-b bg-slate-100 backdrop-blur supports-[backdrop-filter]:bg-background/60"> <div className="container-wrapper"> <div className="container flex h-14 items-center"> {/* 햄버거 메뉴 버튼 (모바일) */} |
