Skip to content

Commit

Permalink
feat(website/app): add smooth scroll and JetBrains
Browse files Browse the repository at this point in the history
  • Loading branch information
HasithDeAlwis authored and MFarabi619 committed Nov 21, 2024
1 parent 830627e commit a398470
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions apps/website/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,25 @@ export const links: LinksFunction = () => [
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap',
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap',
},
]

export default function App() {
return (
<html
lang="en"
className="dark"
className="dark scroll-smooth"
>
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<Links />
</head>
<body>
<body className="!pointer-events-auto">
<Outlet />
<ScrollRestoration />
<Scripts />
Expand Down

0 comments on commit a398470

Please sign in to comment.