mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-08 23:32:40 +02:00
26 lines
799 B
TypeScript
26 lines
799 B
TypeScript
|
|
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}</>;
|
||
|
|
}
|