Skip to content

Commit

Permalink
chore: add cside
Browse files Browse the repository at this point in the history
  • Loading branch information
cnrad committed Feb 3, 2025
1 parent 7b768a6 commit 91aad0b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
},
"packageManager": "[email protected]",
"dependencies": {
"@c-side/next": "^1.0.0",
"@next/third-parties": "^15.1.6",
"@radix-ui/react-popover": "^1.1.2",
"@types/escape-html": "^1.0.4",
Expand Down
14 changes: 14 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Metadata } from "next";
import { GoogleAnalytics } from "@next/third-parties/google";
import "./globals.css";

import { CSideScript } from "@c-side/next";
import { Poppins } from "next/font/google";

const poppins = Poppins({
Expand All @@ -26,6 +26,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<CSideScript />
<body className={`${poppins.className} antialiased`}>{children}</body>
<GoogleAnalytics gaId="G-89E40D5N6D" />
</html>
Expand Down

0 comments on commit 91aad0b

Please sign in to comment.