You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionRoot({ children }: {children: JSX.Element}): JSX.Element{
7
+
return(
8
+
<ThemeProvidertheme={customTheme()}>
9
+
{/* Add the JSON-LD Structured Data in the <head> */}
10
+
<Head>
11
+
<script
12
+
type="application/ld+json"
13
+
dangerouslySetInnerHTML={{
14
+
__html: JSON.stringify({
15
+
"@context": "https://schema.org",
16
+
"@type": "WebSite",
17
+
"url": "https://telepresence.io",
18
+
"name": "Telepresence.io",
19
+
"description": "Telepresence is a platform that allows developers to run their local code in a remote Kubernetes cluster for easier testing and debugging.",
0 commit comments