Skip to content

Commit 72ddaab

Browse files
committed
added https settings and minor UI changes
1 parent d3ef7fa commit 72ddaab

File tree

37 files changed

+3551
-3022
lines changed

37 files changed

+3551
-3022
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22

33
1. Fixed profile dialog script which was caused by an incorrect expected uci entries
44
2. Fixed memory storage card's localstorage logic
5+
3. Fixed home-traffic parsing for SA network mode
56

67
Note: Using https is now recommended

app/dashboard/about/page.tsx

Lines changed: 26 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -70,40 +70,31 @@ const AboutPage = () => {
7070
};
7171

7272
return (
73-
<Card>
74-
<CardHeader>
75-
<CardTitle>QuecManager</CardTitle>
76-
<div className="grid xl:gap-y-10 gap-y-8 gap-4">
77-
<div className="grid gap-4">
78-
<div className="flex flex-row gap-2 justify-between items-center">
79-
<div className="flex flex-row items-center gap-x-2">
73+
<div className="container mx-auto p-6">
74+
<div className="mb-6">
75+
<h1 className="text-3xl font-bold mb-2">About QuecManager</h1>
76+
<p className="text-muted-foreground">
77+
Learn more about QuecManager and the team behind it.
78+
</p>
79+
</div>
80+
<div className="grid lg:grid-cols-2 grid-cols-1 grid-flow-row gap-8">
81+
<Card>
82+
<CardHeader>
83+
<div className="flex items-center justify-between">
84+
<div className="space-y-1">
85+
<CardTitle>Device Technical Details</CardTitle>
8086
<CardDescription>
81-
What is QuecManager and how it can help you.
87+
View technical details of your device.
8288
</CardDescription>
8389
</div>
84-
<div className="flex flex-row items-center gap-x-2">
85-
<Button onClick={() => setHideSensitiveData((prev) => !prev)}>
86-
{hideSensitiveData ? (
87-
<Eye className="xl:size-6 size-5" />
88-
) : (
89-
<EyeOff className="xl:size-6 size-5" />
90-
)}
91-
<span className="hidden md:block">
92-
{hideSensitiveData ? "Show" : "Hide"} Sensitive Data
93-
</span>
94-
</Button>
95-
</div>
90+
<Button onClick={() => setHideSensitiveData((prev) => !prev)}>
91+
{hideSensitiveData ? (
92+
<Eye className="xl:size-6 size-5" />
93+
) : (
94+
<EyeOff className="xl:size-6 size-5" />
95+
)}
96+
</Button>
9697
</div>
97-
</div>
98-
</div>
99-
</CardHeader>
100-
<CardContent className="grid lg:grid-cols-2 grid-cols-1 grid-flow-row gap-8">
101-
<Card>
102-
<CardHeader>
103-
<CardTitle>Device Technical Details</CardTitle>
104-
<CardDescription>
105-
View technical details of your device.
106-
</CardDescription>
10798
</CardHeader>
10899
<CardContent>
109100
<div className="mb-4">
@@ -476,11 +467,11 @@ const AboutPage = () => {
476467
</CardContent>
477468
</Card>
478469
</div>
479-
</CardContent>
480-
<CardFooter className="flex justify-center">
481-
<p>QuecManager © 2024 - For Personal Use Only. All rights reserved.</p>
482-
</CardFooter>
483-
</Card>
470+
</div>
471+
<footer className="flex justify-center mt-6">
472+
<p className="font-semibold">QuecManager © 2024 - For Personal Use Only. All rights reserved.</p>
473+
</footer>
474+
</div>
484475
);
485476
};
486477

0 commit comments

Comments
 (0)