"use client"; import { useRef, type FormEvent } from "react"; import Page from "../../components/Page"; import { sendGTMEvent } from "@next/third-parties/google"; export default function About() { const inputRef = useRef(null); const handleSubmit = (e: FormEvent) => { e.preventDefault(); sendGTMEvent({ event: "message submit", value: inputRef.current?.value }); inputRef.current!.value = ""; }; return (

This is the Contact page