Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
193 changes: 167 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.6.0",
"@stellar/freighter-api": "^6.0.1",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.18.1",
Expand Down
18 changes: 18 additions & 0 deletions src/app/dispute/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import DisputeForm from "@/components/DisputeForm";

export default function DisputePage() {
return (
<div className="max-w-5xl mx-auto px-6 py-16">
<span className="inline-block bg-terra/10 text-terra-deep text-xs font-semibold uppercase tracking-wide rounded-full px-3 py-1 mb-4">
Support
</span>
<h1 className="font-heading text-3xl font-semibold">File a dispute</h1>
<p className="text-muted mt-2 mb-10 max-w-xl">
If something went wrong with a booking, let us know. We&apos;ll review
the case and help both parties reach a fair resolution.
</p>

<DisputeForm />
</div>
);
}
Loading