SurfSense/surfsense_web/app/(home)/contact/page.tsx
2026-03-27 14:57:44 +02:00

17 lines
356 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.",
};
const page = () => {
return (
<div>
<ContactFormGridWithDetails />
</div>
);
};
export default page;