Skip to content

Commit

Permalink
feat: landing page layout implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
evandrosaturnino committed Apr 16, 2023
1 parent f01536a commit 87193da
Show file tree
Hide file tree
Showing 28 changed files with 574 additions and 122 deletions.
Binary file added asset/Inter/Inter-Black.ttf
Binary file not shown.
Binary file added asset/Inter/Inter-Bold.ttf
Binary file not shown.
Binary file added asset/Inter/Inter-ExtraBold.ttf
Binary file not shown.
Binary file added asset/Inter/Inter-ExtraLight.ttf
Binary file not shown.
Binary file added asset/Inter/Inter-Light.ttf
Binary file not shown.
Binary file added asset/Inter/Inter-Medium.ttf
Binary file not shown.
Binary file added asset/Inter/Inter-Regular.ttf
Binary file not shown.
Binary file added asset/Inter/Inter-SemiBold.ttf
Binary file not shown.
Binary file added asset/Inter/Inter-Thin.ttf
Binary file not shown.
43 changes: 42 additions & 1 deletion pages/_app.tsx
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>
)
}
268 changes: 151 additions & 117 deletions pages/index.tsx

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions public/icons/audit-code.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions public/icons/bitcoin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/icons/discord.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/icons/faq.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/icons/note-search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/icons/play-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/icons/question-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/icons/shield-check.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/icons/stacked-coins.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions public/icons/threshold-usd.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 87193da

Please sign in to comment.