@@ -6,6 +6,27 @@ export default defineNuxtConfig({
66 head : {
77 title : "Bootstrap Academy" ,
88 link : [ { rel : "manifest" , href : "manifest.txt" } ] ,
9+ meta : [
10+ { charset : "utf-8" } ,
11+ { name : "viewport" , content : "width=device-width, initial-scale=1" } ,
12+ { name : "theme-color" , content : "#000000" } ,
13+ { hid : "description" , name : "description" , content : "Learn computer science online" } ,
14+
15+ { property : "name" , content : "Bootstrap Academy" } ,
16+ { property : "description" , content : "Learn computer science online" } ,
17+ { property : "image" , content : "https://bootstrap.academy/images/logo.png" } ,
18+
19+ { property : "og:url" , content : "https://bootstrap.academy" } ,
20+ { property : "og:type" , content : "website" } ,
21+ { property : "og:title" , content : "Bootstrap Academy" } ,
22+ { property : "og:description" , content : "Learn computer science online" } ,
23+ { property : "og:image" , content : "https://bootstrap.academy/images/logo.png" } ,
24+
25+ { name : "twitter:card" , content : "summary_large_image" } ,
26+ { name : "twitter:title" , content : "Bootstrap Academy" } ,
27+ { name : "twitter:description" , content : "Learn computer science online" } ,
28+ { name : "twitter:image" , content : "https://bootstrap.academy/images/logo.png" } ,
29+ ] ,
930 } ,
1031 pageTransition : { name : "page" , mode : "out-in" } ,
1132 layoutTransition : { name : "layout" , mode : "out-in" } ,
0 commit comments