Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
feat: add canonical tag to website pages (#266)
Browse files Browse the repository at this point in the history
Generates dynamic `canonical` meta tags for all pages as suggested by:
#236

closes: #236
  • Loading branch information
skylarmb authored Oct 3, 2024
1 parent 44451c8 commit 64bdab1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion website/app/docs/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Metadata } from "next";
import type { Metadata } from "next";
import { PropsWithChildren } from "react";

import DocsLayout from "@/components/DocsLayout";
Expand Down
8 changes: 6 additions & 2 deletions website/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ const inter = Inter({
});

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Kardinal",
description: "The lightest-weight k8s dev environments in the world",
metadataBase: new URL("https://kardinal.dev"),
alternates: {
canonical: "./",
},
};

export default function RootLayout({
Expand Down

0 comments on commit 64bdab1

Please sign in to comment.