Skip to content

Commit 042f4c5

Browse files
author
Robin
committed
added google analathics tag
1 parent a597c51 commit 042f4c5

File tree

2 files changed

+5
-27
lines changed

2 files changed

+5
-27
lines changed

src/app/layout.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ const inter = Inter({ subsets: ["latin"] });
1515

1616
export const metadata: Metadata = {
1717
title: "Code Snapshot",
18-
description:
19-
"Convert your code to butyful Snapshots using codesnapshot.vercel.app",
18+
description: "Convert your code to beutyful Snapshots for free",
2019
manifest: "/site.webmanifest",
2120
metadataBase: new URL("https://codesnapshot.vercel.app"),
21+
verification: {
22+
google: "F34cI-FmqcyPEdSVNhug_a4m_pbKSqI6rQzQGQ-ulEs",
23+
},
2224
};
25+
// <meta name="google-site-verification" content="F34cI-FmqcyPEdSVNhug_a4m_pbKSqI6rQzQGQ-ulEs" />
2326
export const viewport: Viewport = {
2427
width: "750",
2528
initialScale: 1,

src/app/page.tsx

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,5 @@
11
import App from "./_components/App";
22

33
export default async function Home() {
4-
// const editorRef = useRef<HTMLDivElement>(null!);
5-
// const editorState = useAppSelector((state) => state.editor);
6-
74
return <App />;
8-
9-
// return (
10-
// <div className="flex min-h-screen scroll-m-48 flex-col justify-center gap-6 bg-background text-foreground">
11-
// <div
12-
// className="flex justify-center"
13-
// style={
14-
// editorState.darkMode
15-
// ? (customThemes[editorState.theme].syntax
16-
// .dark as React.CSSProperties)
17-
// : (customThemes[editorState.theme].syntax
18-
// .light as React.CSSProperties)
19-
// }
20-
// >
21-
// <Resizeable>
22-
// <CodeEditor ref={editorRef} />
23-
// {/* <HljsCodeEditor /> */}
24-
// </Resizeable>
25-
// </div>
26-
27-
// <ControlPanal node={editorRef.current} />
28-
// </div>
29-
// );
305
}

0 commit comments

Comments
 (0)