We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c890ec commit cc0a9b2Copy full SHA for cc0a9b2
src/app/layout.tsx
@@ -1,4 +1,5 @@
1
import type { Metadata } from "next";
2
+import Script from "next/script";
3
import "./index.css";
4
5
export const metadata: Metadata = {
@@ -20,7 +21,7 @@ export const metadata: Metadata = {
20
21
"Guangyun",
22
],
23
icons: {
- icon: "/icon.svg",
24
+ icon: "/yindian/icon.svg",
25
},
26
};
27
@@ -31,7 +32,14 @@ export default function RootLayout({
31
32
}>) {
33
return (
34
<html lang="zh-HK">
- <body className="antialiased">{children}</body>
35
+ <head>
36
+ <Script
37
+ src="https://static.cloudflareinsights.com/beacon.min.js"
38
+ strategy="afterInteractive"
39
+ data-cf-beacon='{"token":"16ad6c356b37426cb31816318ed5a42d"}'
40
+ />
41
+ </head>
42
+ <body>{children}</body>
43
</html>
44
);
45
}
0 commit comments