Skip to content

Commit b3d743c

Browse files
committed
responded to comments
1 parent 17b1078 commit b3d743c

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

app/connect/configure/page.tsx

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ export default async function Page({
1010
<div className="flex items-center justify-between border-b pb-4 mb-8">
1111
<div className="flex items-center gap-4">
1212
<div className="w-10 h-10 bg-gray-100"></div>
13-
<h1 className="text-2xl font-bold text-blue-600">
14-
ACME Marketplace Team
15-
</h1>
13+
<h1 className="text-2xl font-bold text-blue-600">ACME Corp</h1>
14+
</div>
15+
<div className="font-mono text-sm ">
16+
Configuration ID: {configurationId}
1617
</div>
1718
<div className="text-lg font-medium">ACME</div>
1819
</div>
@@ -34,7 +35,6 @@ export default async function Page({
3435
</div>
3536
</div>
3637

37-
{/* Payment Methods */}
3838
<div className="bg-white rounded-lg border p-6 mb-6">
3939
<div className="pb-3 mb-4">
4040
<h2 className="text-2xl font-semibold">Payment Methods</h2>
@@ -51,37 +51,31 @@ export default async function Page({
5151
<div className="text-gray-500">Expires 04/2025</div>
5252
</div>
5353
</div>
54-
<button className="px-4 py-2 border rounded-md hover:bg-gray-50">
54+
<button className="px-4 py-2 border rounded-md" disabled={true}>
5555
Edit
5656
</button>
5757
</div>
5858

59-
<button className="w-full py-2 border rounded-md hover:bg-gray-50">
59+
<button className="w-full py-2 border rounded-md" disabled={true}>
6060
Add Payment Method
6161
</button>
6262
</div>
6363
</div>
6464

65-
{/* Account Ownership */}
6665
<div className="bg-white rounded-lg border p-6">
6766
<div className="pb-3 mb-4">
6867
<h2 className="text-2xl font-semibold">Account Ownership</h2>
6968
<p className="text-gray-500 text-base">
70-
Transfer your account ownership and billing to a Vercel team
69+
Transfer your account ownership and billing to your Vercel team
7170
</p>
7271
</div>
7372

7473
<div className="space-y-6">
7574
<p className="text-gray-600">
7675
Transferring ownership will move all billing responsibilities to
77-
the selected Vercel team. This action cannot be undone without
78-
contacting support.
76+
the selected Vercel team.
7977
</p>
8078

81-
<div className="font-mono text-sm bg-gray-50 p-3 rounded border">
82-
Configuration ID: {configurationId}
83-
</div>
84-
8579
<TransferToVercelRedirect configurationId={configurationId} />
8680
</div>
8781
</div>

0 commit comments

Comments
 (0)