Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/app/(setup)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import type { Metadata, Viewport } from 'next'
import { Geist } from 'next/font/google'
import './setup.css'

const geist = Geist({ subsets: ['latin'] })

/**
* Setup is never a page anyone should reach from a search result: before it runs
* it accepts credentials, and after it runs it reports on the site's own
Expand Down Expand Up @@ -33,7 +36,7 @@ export const viewport: Viewport = {
export default function SetupLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
<body className={geist.className}>{children}</body>
</html>
)
}
Loading