|
|
|
@ -4,6 +4,7 @@ import { Button } from "@/components/ui/button";
|
|
|
|
|
import DateTimePicker from "./date-time-picker";
|
|
|
|
|
import { Field } from "@/components/ui/field";
|
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
|
|
|
import { NumberInput } from "@/components/ui/number-input";
|
|
|
|
|
import { getI18n } from "@/i18n/server";
|
|
|
|
|
import { stack } from "@styled-system/patterns";
|
|
|
|
|
import { styled } from "@styled-system/jsx";
|
|
|
|
@ -31,7 +32,7 @@ export default async function ReservationForm() {
|
|
|
|
|
<DateTimePicker />
|
|
|
|
|
<Field.Root id="guests">
|
|
|
|
|
<Field.Label>{t("reservation.guests")}</Field.Label>
|
|
|
|
|
<Field.Input name="guests" placeholder={t("reservation.guests")} />
|
|
|
|
|
<NumberInput name="guests" />
|
|
|
|
|
</Field.Root>
|
|
|
|
|
<Field.Root id="message">
|
|
|
|
|
<Field.Label>{t("contact.message")}</Field.Label>
|
|
|
|
|