Skip to content

Commit

Permalink
docs: Set document language [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
amannn committed Aug 30, 2023
1 parent 7e5ebd1 commit 0b0d71f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';
import {Html, Head, Main, NextScript} from 'next/document';
import {SkipNavLink} from 'nextra-theme-docs';

export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<SkipNavLink styled />
<Main />
<NextScript />
</body>
</Html>
);
}

2 comments on commit 0b0d71f

@vercel
Copy link

@vercel vercel bot commented on 0b0d71f Aug 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

next-intl-example-next-13 – ./examples/example-next-13

next-intl-example-next-13.vercel.app
next-intl-example-next-13-next-intl.vercel.app
next-intl-example-next-13-git-main-next-intl.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 0b0d71f Aug 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

example-next-13-next-auth – ./examples/example-next-13-next-auth

example-next-13-next-auth-next-intl.vercel.app
example-next-13-next-auth.vercel.app
example-next-13-next-auth-git-main-next-intl.vercel.app

Please sign in to comment.