Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 9411b90

Browse files
authored
Enhance HTML with meta tags for social media (#210)
Added Open Graph and Twitter meta tags for better social sharing.
1 parent b4a2495 commit 9411b90

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/app.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
<!doctype html>
22
<html lang="en">
33
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
6+
<meta property="og:locale" content="en_US" />
7+
<meta property="og:site_name" content="Kuzu" />
8+
<meta property="og:image" content="https://kuzudb.com/img/kuzu-logo.png" />
9+
<meta property="og:type" content="article" />
10+
<meta name="twitter:card" content="summary" />
11+
<meta property="twitter:image" content="https://kuzudb.com/img/kuzu-logo.png" />
12+
<meta name="twitter:site" content="@kuzudb" />
13+
<meta name="description" content="Kuzu is an embedded graph database that supports the Cypher query language. Built by a team of database experts with a relentless drive towards performance, scalability and usability, Kuzu offers a state-of-the-art query processor for graphs and is the ideal foundation for your graph-based analytical applications.">
14+
415
<meta charset="utf-8" />
516
<link rel="icon" href="%sveltekit.assets%/favicon.ico" />
617
<meta name="viewport" content="width=device-width, initial-scale=1" />

0 commit comments

Comments
 (0)