File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,10 +30,31 @@ initSentry({
3030// text remains visible during fetch.
3131// Disable Google Font fetching in offline / CI environments.
3232const 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
3438export 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
3960export default function RootLayout ( {
You can’t perform that action at this time.
0 commit comments