Skip to content

Commit 1369b74

Browse files
authored
Merge pull request #58 from Dagdon/feature/merchant-settings-page
feat: Frontend - Implement Account & API Settings Page #22
2 parents 68257fb + 9f89949 commit 1369b74

File tree

5 files changed

+443
-18
lines changed

5 files changed

+443
-18
lines changed

fluxapay_frontend/package-lock.json

Lines changed: 75 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fluxapay_frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "next dev",
6+
"dev": "next dev -p 3075",
77
"build": "next build",
88
"start": "next start",
99
"lint": "eslint"
@@ -40,4 +40,4 @@
4040
"tw-animate-css": "^1.4.0",
4141
"typescript": "^5"
4242
}
43-
}
43+
}
Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
1-
export default function SettingsPage() {
2-
return (
3-
<div className="space-y-6">
4-
<div className="flex items-center justify-between">
5-
<div>
6-
<h2 className="text-2xl font-bold tracking-tight">Settings</h2>
7-
<p className="text-muted-foreground">Manage your account preferences and configurations.</p>
8-
</div>
9-
</div>
1+
import { SettingsPage } from "@/features/settings";
102

11-
{/* Pending Implementation: Settings Form */}
12-
<div className="rounded-xl border bg-card shadow p-12 text-center text-muted-foreground">
13-
Account Settings will be implemented here.
14-
</div>
15-
</div>
16-
);
3+
export default function Settings() {
4+
return <SettingsPage />;
175
}

0 commit comments

Comments
 (0)