feat(seo): implement google analytics, sitemap, robots and json-ld structured data

This commit is contained in:
Poyraz Avsever
2026-03-30 11:28:05 +03:00
parent e08b9ae708
commit a23665ee9e
6 changed files with 162 additions and 3 deletions
+3 -1
View File
@@ -1,7 +1,8 @@
import type { Metadata } from "next";
import type { Metadata } from "next";
import "./globals.css";
import { AppShell } from "@/components/app-shell";
import { GoogleAnalytics } from "@/components/google-analytics";
export const metadata: Metadata = {
metadataBase: new URL("https://poyrazavsever.com"),
@@ -85,6 +86,7 @@ export default function RootLayout({
return (
<html lang="tr">
<body className="min-h-dvh bg-background text-foreground antialiased">
<GoogleAnalytics />
<AppShell>{children}</AppShell>
</body>
</html>