Skip to content

Commit c43b0ad

Browse files
Implement meta embeds (#251)
* Implement meta embeds * Update description and logo --------- Co-authored-by: Felix <[email protected]>
1 parent 8ba29f1 commit c43b0ad

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

nuxt.config.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)