File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,9 +9,16 @@ const inter = Inter({
99 variable : "--font-inter" ,
1010} ) ;
1111
12+ const SITE_TITLE = 'AustroVis' ;
13+ const SITE_DESCRIPTION = 'A workshop series focused on visualization and visual analytics at Austrian institutions.' ;
14+ const SITE_URL = 'https://austrovis.github.io' ;
15+
1216export const metadata : Metadata = {
13- title : "AustroVis - Visualization & Visual Analytics Workshops" ,
14- description : "A workshop series focused on visualization and visual analytics at Austrian institutions." ,
17+ title : {
18+ default : SITE_TITLE ,
19+ template : `%s | ${ SITE_TITLE } ` ,
20+ } ,
21+ description : SITE_DESCRIPTION ,
1522 icons : {
1623 icon : [
1724 { url : '/favicon.svg' , type : 'image/svg+xml' } ,
@@ -20,6 +27,26 @@ export const metadata: Metadata = {
2027 { url : '/logo.svg' , type : 'image/svg+xml' } ,
2128 ] ,
2229 } ,
30+ openGraph : {
31+ title : SITE_TITLE ,
32+ description : SITE_DESCRIPTION ,
33+ url : SITE_URL ,
34+ siteName : SITE_TITLE ,
35+ images : [
36+ {
37+ url : '/opengraph.png' ,
38+ width : 1200 ,
39+ height : 630 ,
40+ } ,
41+ ] ,
42+ type : 'website' ,
43+ } ,
44+ twitter : {
45+ card : 'summary_large_image' ,
46+ title : SITE_TITLE ,
47+ description : SITE_DESCRIPTION ,
48+ images : [ '/opengraph.png' ] ,
49+ } ,
2350} ;
2451
2552export default function RootLayout ( {
You can’t perform that action at this time.
0 commit comments