update: reorder accommodation/food notices, remove referral reward text

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-06 14:24:07 -08:00
parent 9ae7909275
commit ddbdd95191
1 changed files with 7 additions and 7 deletions

View File

@ -272,6 +272,12 @@ export default function RegisterPage() {
</div>
</div>
{includeAccommodation && (
<p className="text-xs text-muted-foreground bg-muted/50 rounded-lg p-3">
We&apos;ll follow up closer to the event to confirm room assignments and accommodation details.
</p>
)}
{/* Food note */}
<div className="py-4 border-b border-border">
<p className="text-sm text-muted-foreground">
@ -281,12 +287,6 @@ export default function RegisterPage() {
</p>
</div>
{includeAccommodation && (
<p className="text-xs text-muted-foreground bg-muted/50 rounded-lg p-3">
We&apos;ll follow up closer to the event to confirm room assignments and accommodation details.
</p>
)}
{/* Total */}
<div className="flex justify-between items-center py-4 bg-primary/10 -mx-6 px-6 mt-4">
<div>
@ -541,7 +541,7 @@ export default function RegisterPage() {
<Label htmlFor="howHeard">How did you hear about CCG?</Label>
<Input
id="howHeard"
placeholder="First timers: Did anyone recommend it to you? (they might be rewarded!)"
placeholder="First timers: Did anyone recommend it to you?"
value={formData.howHeard}
onChange={(e) => setFormData({ ...formData, howHeard: e.target.value })}
/>