Skip to content

Commit

Permalink
added canonical link element
Browse files Browse the repository at this point in the history
  • Loading branch information
gnehs committed Nov 21, 2024
1 parent 582cba6 commit 35a426c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/(website)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Button from "@/components/website/button";
import Readmore from "./Readmore";
import { jsonLd } from "./jsonLd";
import { Metadata } from "next";
function Heading({ chinese, english }: { chinese: string; english: string }) {
return (
<>
Expand All @@ -13,7 +14,9 @@ function Heading({ chinese, english }: { chinese: string; english: string }) {
</>
);
}

export const metadata: Metadata = {
alternates: { canonical: "https://sitcon.org/2024/" },
};
export default function Page() {
return (
<div className="mx-auto max-w-[1920px] overflow-hidden">
Expand Down

0 comments on commit 35a426c

Please sign in to comment.