This commit is contained in:
Matt Van Horn 2026-04-24 02:27:10 -07:00 committed by GitHub
commit f3fae59a6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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}</>;
}