import { HStack, styled } from "@styled-system/jsx"; import { Button } from "@/components/ui/button"; import { Field } from "@/components/ui/field"; import { Input } from "@/components/ui/input"; import { getI18n } from "@/i18n/server"; import { stack } from "@styled-system/patterns"; import { submitContactFormAction } from "@/actions/contact"; export default async function ContactForm() { const t = await getI18n(); return ( {t("contact.name")} {t("general.email")} {t("contact.subject")} {t("contact.message")} ); }