-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: landing page layout implementation
- Loading branch information
1 parent
f01536a
commit 87193da
Showing
28 changed files
with
574 additions
and
122 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,47 @@ | ||
import localFont from 'next/font/local' | ||
import '@/styles/globals.css' | ||
import type { AppProps } from 'next/app' | ||
|
||
const inter = localFont({ | ||
src: [ | ||
{ | ||
path: '../asset/Inter/Inter-Regular.ttf', | ||
weight: '400', | ||
style: 'normal', | ||
}, | ||
{ | ||
path: '../asset/Inter/Inter-Medium.ttf', | ||
weight: '500', | ||
style: 'normal', | ||
}, | ||
{ | ||
path: '../asset/Inter/Inter-SemiBold.ttf', | ||
weight: '600', | ||
style: 'normal', | ||
}, | ||
{ | ||
path: '../asset/Inter/Inter-Bold.ttf', | ||
weight: '700', | ||
style: 'normal', | ||
}, | ||
{ | ||
path: '../asset/Inter/Inter-ExtraBold.ttf', | ||
weight: '800', | ||
style: 'normal', | ||
}, | ||
{ | ||
path: '../asset/Inter/Inter-Black.ttf', | ||
weight: '900', | ||
style: 'normal', | ||
}, | ||
], | ||
variable: '--font-inter' | ||
}) | ||
|
||
export default function App({ Component, pageProps }: AppProps) { | ||
return <Component {...pageProps} /> | ||
return ( | ||
<main className={`${inter.variable} font-sans`}> | ||
<Component className={`${inter.variable} font-sans`} {...pageProps} /> | ||
</main> | ||
) | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.