Skip to content

Commit f5b65ee

Browse files
title update
1 parent 151e2e9 commit f5b65ee

1 file changed

Lines changed: 23 additions & 2 deletions

File tree

uapi/app/layout.tsx

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,31 @@ initSentry({
3030
// text remains visible during fetch.
3131
// Disable Google Font fetching in offline / CI environments.
3232
const inter = { className: '' } as const;
33+
const appUrl = process.env.NEXT_PUBLIC_APP_URL || 'https://app.engi.ai';
34+
const metadataTitle = "$ENGI • The Engineering Knowledge Token";
35+
const metadataDescription =
36+
"$ENGI is a data depot for the world's most valuable technical data used to improve advanced engineering artifical intelligences.";
3337

3438
export const metadata: Metadata = {
35-
title: "engi • eng/acc",
36-
description: "evolutionary engineering AI",
39+
metadataBase: new URL(appUrl),
40+
title: metadataTitle,
41+
description: metadataDescription,
42+
applicationName: '$ENGI',
43+
alternates: {
44+
canonical: '/',
45+
},
46+
openGraph: {
47+
title: metadataTitle,
48+
description: metadataDescription,
49+
url: '/',
50+
siteName: '$ENGI',
51+
type: 'website',
52+
},
53+
twitter: {
54+
card: 'summary_large_image',
55+
title: metadataTitle,
56+
description: metadataDescription,
57+
},
3758
};
3859

3960
export default function RootLayout({

0 commit comments

Comments
 (0)