Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
noahlitvin committed Jan 19, 2025
1 parent 8bea1fe commit d465a85
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/app/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ type RootLayoutProps = {
};

const APP_NAME = 'Foil';
const APP_DESCRIPTION = 'The fully decentralized marketplace for onchain resources';
const APP_DESCRIPTION =
'The fully decentralized marketplace for onchain resources';

export const metadata: Metadata = {
title: { default: APP_NAME, template: '%s | Foil' },
Expand All @@ -23,7 +24,7 @@ export const metadata: Metadata = {
appleWebApp: {
capable: true,
title: APP_NAME,
statusBarStyle: 'default'
statusBarStyle: 'default',
},
formatDetection: {
telephone: false,
Expand All @@ -33,14 +34,14 @@ export const metadata: Metadata = {
url: 'https://foil.xyz',
title: APP_NAME,
description: APP_DESCRIPTION,
siteName: APP_NAME
siteName: APP_NAME,
},
twitter: {
creator: '@foilxyz',
card: 'summary_large_image',
title: APP_NAME,
description: APP_DESCRIPTION,
}
},
};

export const viewport: Viewport = {
Expand All @@ -49,7 +50,7 @@ export const viewport: Viewport = {
maximumScale: 1,
userScalable: false,
themeColor: '#FFFFFF',
viewportFit: 'cover'
viewportFit: 'cover',
};

const RootLayout = ({ children }: RootLayoutProps) => {
Expand Down

0 comments on commit d465a85

Please sign in to comment.