2026-03-27 14:44:40 +02:00
|
|
|
import type { Metadata } from "next";
|
2025-10-02 18:10:07 -07:00
|
|
|
import { ContactFormGridWithDetails } from "@/components/contact/contact-form";
|
|
|
|
|
|
2026-03-27 14:44:40 +02:00
|
|
|
export const metadata: Metadata = {
|
2026-03-27 14:57:44 +02:00
|
|
|
title: "Contact | SurfSense",
|
2026-04-11 23:38:12 -07:00
|
|
|
description: "Get in touch with the SurfSense team for enterprise AI search, knowledge management, or partnership inquiries.",
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://surfsense.com/contact",
|
|
|
|
|
},
|
2026-03-27 14:44:40 +02:00
|
|
|
};
|
|
|
|
|
|
2025-10-02 18:10:07 -07:00
|
|
|
const page = () => {
|
2026-03-27 14:57:44 +02:00
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<ContactFormGridWithDetails />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-10-02 18:10:07 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default page;
|