Skip to content

Commit

Permalink
fix: 정렬 속성 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hj9118 committed Apr 23, 2024
1 parent 585dc99 commit d022547
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import type { Metadata } from 'next';

import '../style/globals.css';
import GNB from './_components/GNB';
import Header from './_components/Header';
import Introduction from './_components/Introduction';

export const metadata: Metadata = {
Expand All @@ -16,12 +18,16 @@ const RootLayout = ({
return (
<html lang='ko'>
<body>
<div className='flex h-screen w-screen flex-row items-center justify-center gap-10'>
<div className='flex h-screen w-screen items-center justify-center gap-10'>
<div className='hidden shrink sm:flex'>
<Introduction />
</div>
<div className='relative flex h-full max-h-[950px] min-h-[600px] w-full min-w-[350px] max-w-[450px] shrink-0 flex-col shadow-xl'>
{children}
<div className='relative flex h-full max-h-[950px] min-h-[600px] w-full min-w-[350px] max-w-[450px] shrink-0 flex-col justify-between shadow-xl'>
<div>
<Header />
{children}
</div>
<GNB />
</div>
</div>
</body>
Expand Down

0 comments on commit d022547

Please sign in to comment.