Skip to content

Commit 4c0fed8

Browse files
committed
fix(seo): close #17
1 parent edb0951 commit 4c0fed8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

app/layout.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ export const metadata = {
3636
metadataBase: siteConfig.metadataBase,
3737
openGraph: siteConfig.openGraph,
3838
twitter: siteConfig.twitter,
39+
alternates: {
40+
canonical: '/'
41+
}
3942
};
4043

4144
export default async function RootLayout({

components/MainHeader.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ export default function MainHeader() {
1111
width={32}
1212
height={32}
1313
/>
14-
<h1 className="sm:text-4xl text-2xl ml-2 tracking-tight font-extralight flex items-center">
14+
<span className="sm:text-4xl text-2xl ml-2 tracking-tight font-extralight flex items-center">
1515
Smart Excel
16-
</h1>
16+
</span>
1717
</Link>
1818
);
1919
}

components/subscribe/Subscribe.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default function Subscribe({ user }: { user: UserInfo | null }) {
110110
return (
111111
<div>
112112
<div>
113-
<h1 className="text-4xl font-bold mb-8 text-zinc-800">UPGRADE</h1>
113+
<h2 className="text-4xl font-bold mb-8 text-zinc-800">UPGRADE</h2>
114114
</div>
115115
<section className="w-full py-0 flex items-center justify-center">
116116
<div className="container px-4 md:px-6">

0 commit comments

Comments
 (0)