Skip to content

Commit

Permalink
feat: snap 관련 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Tekiter committed Jul 22, 2023
1 parent 8bb6c61 commit 09c71c7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 33 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const suitFont = localFont({

export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang='ko' className={(clsx(suitFont.variable), 'bg-black100 text-white snap-y snap-mandatory')}>
<html lang='ko' className={(clsx(suitFont.variable), 'bg-black100 text-white')}>
<body className='min-h-screen'>
<AnimationProviders>{children}</AnimationProviders>
</body>
Expand Down
25 changes: 6 additions & 19 deletions apps/web/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use client';

import FullPage from '@/components/common/FullPage';
import Header from '@/components/header/Header';
import Archive from '@/components/mainpage/Archive';
import CoreValue from '@/components/mainpage/CoreValue';
Expand All @@ -13,24 +12,12 @@ export default function Page() {
return (
<div>
<Header />
<FullPage>
<Greeting />
</FullPage>
<FullPage>
<MakersIntodution />
</FullPage>
<FullPage>
<CoreValue />
</FullPage>
<FullPage>
<Product />
</FullPage>
<FullPage>
<Archive />
</FullPage>
<FullPage>
<RecruitBanner />
</FullPage>
<Greeting />
<MakersIntodution />
<CoreValue />
<Product />
<Archive />
<RecruitBanner />
</div>
);
}
13 changes: 0 additions & 13 deletions apps/web/src/components/common/FullPage.tsx

This file was deleted.

0 comments on commit 09c71c7

Please sign in to comment.