Skip to content

Commit

Permalink
Fix meta
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoColomb authored Aug 16, 2023
1 parent 3779ded commit 2a0c0a8
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions pages/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,18 @@ export const links: LinksFunction = () => {

export const meta: V2_MetaFunction = () => [
{ charset: 'utf-8' },
{ title: 'Dispoflare · Disposable email addresses on the fly' },
{ description: 'Disposable email addresses on the fly' },
{ viewport: 'width=device-width,initial-scale=1' },
{
name: 'title',
content: 'Dispoflare · Disposable email addresses on the fly',
},
{
name: 'description',
content: 'Disposable email addresses on the fly',
},
{
name: 'viewport',
content: 'width=device-width,initial-scale=1',
},
]

export default function App() {
Expand Down

0 comments on commit 2a0c0a8

Please sign in to comment.