mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-17 18:35:19 +02:00
Merge pull request #1303 from mvanhorn/osc/announcements-seo-metadata-dev
feat(announcements): add SEO metadata via server layout.tsx
This commit is contained in:
commit
6895b01e30
1 changed files with 25 additions and 0 deletions
25
surfsense_web/app/(home)/announcements/layout.tsx
Normal file
25
surfsense_web/app/(home)/announcements/layout.tsx
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
import type { Metadata } from "next";
|
||||||
|
import type { ReactNode } from "react";
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: "Announcements | SurfSense",
|
||||||
|
description: "Latest product updates, feature releases, and news from SurfSense.",
|
||||||
|
alternates: {
|
||||||
|
canonical: "https://surfsense.com/announcements",
|
||||||
|
},
|
||||||
|
openGraph: {
|
||||||
|
title: "Announcements | SurfSense",
|
||||||
|
description: "Latest product updates, feature releases, and news from SurfSense.",
|
||||||
|
url: "https://surfsense.com/announcements",
|
||||||
|
type: "website",
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image",
|
||||||
|
title: "Announcements | SurfSense",
|
||||||
|
description: "Latest product updates, feature releases, and news from SurfSense.",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function AnnouncementsLayout({ children }: { children: ReactNode }) {
|
||||||
|
return <>{children}</>;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue