Change placeholder to Namn

Updated contact form name field placeholder from "Ditt namn" to "Namn" in Contact.tsx to remove possessive phrasing.

X-Lovable-Edit-ID: edt-fa9d4100-5033-4e5c-8afb-372efa37d833
This commit is contained in:
gpt-engineer-app[bot]
2026-01-28 13:04:39 +00:00
+1 -1
View File
@@ -116,7 +116,7 @@ const Contact = () => {
type="text"
value={form.name}
onChange={(e) => setForm({ ...form, name: e.target.value })}
placeholder="Ditt namn"
placeholder="Namn"
required
/>
</div>