Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add canonical tag to website pages #266

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: "./",
galenmarchetti marked this conversation as resolved.
Show resolved Hide resolved
},
};

export default function RootLayout({
Expand Down