Arrange code style

This commit is contained in:
JoeMakuta 2026-03-27 14:57:44 +02:00
parent a26bae2702
commit d85cb1d78f
3 changed files with 109 additions and 113 deletions

View file

@ -2,16 +2,16 @@ 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.",
title: "Contact | SurfSense",
description: "Get in touch with the SurfSense team.",
};
const page = () => {
return (
<div>
<ContactFormGridWithDetails />
</div>
);
return (
<div>
<ContactFormGridWithDetails />
</div>
);
};
export default page;