We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 525cf84 commit 3bc82a7Copy full SHA for 3bc82a7
spicecloud/pages/_app.tsx
@@ -1,6 +1,17 @@
1
import '../styles/globals.css'
2
import type { AppProps } from 'next/app'
3
+import Head from 'next/head'
4
+import React from 'react'
5
6
export default function App({ Component, pageProps }: AppProps) {
- return <Component {...pageProps} />
7
+ return (
8
+ <>
9
+ <Head>
10
+ <title>SpiceCloud | Powered by SpiceCodeCLI</title>
11
+ </Head>
12
+
13
+ <Component {...pageProps} />
14
+ </>
15
+ )
16
17
}
0 commit comments