feat: add metadata to changelog, contact, and pricing pages

This commit is contained in:
JoeMakuta 2026-03-27 14:44:40 +02:00
parent c7ace83b61
commit a26bae2702
3 changed files with 125 additions and 105 deletions

View file

@ -1,12 +1,17 @@
import React from "react";
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>
);
return (
<div>
<ContactFormGridWithDetails />
</div>
);
};
export default page;