SurfSense/surfsense_web/app/(home)/contact/page.tsx

13 lines
219 B
TypeScript
Raw Normal View History

2025-10-02 18:10:07 -07:00
import React from "react";
import { ContactFormGridWithDetails } from "@/components/contact/contact-form";
const page = () => {
return (
<div>
<ContactFormGridWithDetails />
</div>
);
};
export default page;