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.
21 lines
500 B
TypeScript
21 lines
500 B
TypeScript
import type { Metadata } from "next";
|
|
import { ContactFormGridWithDetails } from "@/components/contact/contact-form";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Contact | SurfSense",
|
|
description:
|
|
"Get in touch with the SurfSense team for enterprise AI search, knowledge management, or partnership inquiries.",
|
|
alternates: {
|
|
canonical: "https://www.surfsense.com/contact",
|
|
},
|
|
};
|
|
|
|
const page = () => {
|
|
return (
|
|
<div>
|
|
<ContactFormGridWithDetails />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default page;
|