mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-19 18:45:15 +02:00
This commit modifies various metadata and canonical URLs in the SurfSense application to ensure consistency by using "https://www.surfsense.com" instead of "https://surfsense.com". Changes were made in layout files, blog posts, and SEO components to reflect this update.
25 lines
807 B
TypeScript
25 lines
807 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://www.surfsense.com/announcements",
|
|
},
|
|
openGraph: {
|
|
title: "Announcements | SurfSense",
|
|
description: "Latest product updates, feature releases, and news from SurfSense.",
|
|
url: "https://www.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}</>;
|
|
}
|