Skip to content

Commit 82c5499

Browse files
committed
feat: update site metadata with descriptive title and description
1 parent 689930c commit 82c5499

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ jobs:
7272

7373
- name: Build with Next.js
7474
run: pnpm next build
75-
- name: Static HTML export with Next.js
76-
run: pnpm next build
75+
env:
76+
NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID: ${{ secrets.NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID }}
7777
- name: Upload artifact
7878
uses: actions/upload-pages-artifact@v3
7979
with:

src/app/layout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import type { Metadata } from "next";
22
import { Inter, Staatliches } from "next/font/google";
33
import "./globals.css";
44
import Navigation from "./components/Navigation";
5-
import { GoogleAnalytics } from '@next/third-parties/google'
5+
import { GoogleTagManager } from '@next/third-parties/google'
66

77
const inter = Inter({ subsets: ['latin'] });
88
const staatliches = Staatliches({ weight: '400', subsets: ['latin'] });
99

1010
export const metadata: Metadata = {
11-
title: "Create Next App",
12-
description: "Generated by create next app",
11+
title: '1:1 Meeting Cards | Lead Better One-on-One Conversations',
12+
description: 'Lead meaningful 1on1 conversations that strengthen your team and drive growth. A curated collection of conversation cards for better team management.'
1313
};
1414

1515
export default function RootLayout({
@@ -22,7 +22,7 @@ export default function RootLayout({
2222
<body className={`${inter.className} ${staatliches.className} font-inter bg-athens-gray text-purple pt-12 pb-24`}>
2323
<Navigation />
2424
{children}
25-
<GoogleAnalytics gaId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS_ID || ''} />
25+
<GoogleTagManager gtmId={process.env.NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID || ''} />
2626
</body>
2727
</html>
2828
);

0 commit comments

Comments
 (0)