@@ -66,44 +66,39 @@ export default function Page() {
66
66
67
67
// Sample screenshots - replace these with actual paths to your screenshots
68
68
const screenshots = [
69
+ {
70
+ label : '淨值變化' ,
71
+ imgPath : '/images/net-worth.png' ,
72
+ description : '追蹤您的淨值變化趨勢,掌握財務成長情況' ,
73
+ } ,
69
74
{
70
75
label : '資產負債總覽' ,
71
- imgPath : '/images/dashboard-screenshot .png' ,
76
+ imgPath : '/images/asset-liability-time-series .png' ,
72
77
description : '一目了然的儀表板,讓您掌握所有資產、負債和淨值變化' ,
73
78
} ,
74
79
{
75
80
label : '資產分佈分析' ,
76
- imgPath : '/images/asset-distribution-screenshot .png' ,
81
+ imgPath : '/images/asset-distribution.png' ,
77
82
description : '視覺化的資產分佈圖表,幫助您優化資產配置' ,
78
83
} ,
79
- {
80
- label : '投資組合管理' ,
81
- imgPath : '/images/portfolio-screenshot.png' ,
82
- description : '全面的投資組合追蹤與管理功能' ,
83
- } ,
84
- {
85
- label : '財務報表' ,
86
- imgPath : '/images/financial-reports-screenshot.png' ,
87
- description : '詳細的財務報表,幫助您掌握財務健康狀況' ,
88
- } ,
89
84
]
90
85
91
86
// Financial module features
92
87
const financialFeatures = [
93
88
{
94
- title : '資產負債追蹤 ' ,
95
- imgPath : '/images/asset-tracking .png' ,
96
- description : '定期追蹤您的資產、負債和淨值變化,掌握財務全貌 ' ,
89
+ title : '淨值趨勢分析 ' ,
90
+ imgPath : '/images/net-worth .png' ,
91
+ description : '追蹤您的淨值變化趨勢,掌握財務成長情況 ' ,
97
92
} ,
98
93
{
99
- title : '投資組合管理 ' ,
100
- imgPath : '/images/portfolio-management .png' ,
101
- description : '追蹤您的投資組合表現,分析收益與風險 ' ,
94
+ title : '資產負債追蹤 ' ,
95
+ imgPath : '/images/asset-liability-time-series .png' ,
96
+ description : '定期追蹤您的資產、負債和淨值變化,掌握財務全貌 ' ,
102
97
} ,
103
98
{
104
- title : '財務記帳功能 ' ,
105
- imgPath : '/images/financial-journal .png' ,
106
- description : '即將推出的記帳功能,幫助您記錄日常收支 ' ,
99
+ title : '資產分佈分析 ' ,
100
+ imgPath : '/images/asset-distribution .png' ,
101
+ description : '視覺化您的資產分佈,了解資產配置情況 ' ,
107
102
} ,
108
103
]
109
104
@@ -210,14 +205,14 @@ export default function Page() {
210
205
height : 300 ,
211
206
width : '100%' ,
212
207
position : 'relative' ,
213
- bgcolor : 'rgba(255,255,255,0.1) ' ,
208
+ bgcolor : '#FFFFFF ' ,
214
209
display : 'flex' ,
215
210
alignItems : 'center' ,
216
211
justifyContent : 'center' ,
217
212
overflow : 'hidden' ,
218
213
} }
219
214
>
220
- { /* Replace with actual images when available */ }
215
+ { /* 使用實際圖片替換佔位符 */ }
221
216
< Box
222
217
sx = { {
223
218
position : 'relative' ,
@@ -228,13 +223,12 @@ export default function Page() {
228
223
justifyContent : 'center' ,
229
224
} }
230
225
>
231
- { /* Placeholder for actual image */ }
232
- < Typography
233
- variant = "h6"
234
- sx = { { zIndex : 1 , color : 'white' , textAlign : 'center' } }
235
- >
236
- { screenshots [ activeStep ] . label }
237
- </ Typography >
226
+ < Image
227
+ src = { screenshots [ activeStep ] . imgPath }
228
+ alt = { screenshots [ activeStep ] . label }
229
+ fill
230
+ style = { { objectFit : 'contain' } }
231
+ />
238
232
< Box
239
233
sx = { {
240
234
position : 'absolute' ,
@@ -243,6 +237,8 @@ export default function Page() {
243
237
right : 0 ,
244
238
px : 2 ,
245
239
zIndex : 1 ,
240
+ backgroundColor : 'rgba(0,0,0,0.5)' ,
241
+ py : 1 ,
246
242
} }
247
243
>
248
244
< Typography
@@ -380,10 +376,10 @@ export default function Page() {
380
376
sx = { {
381
377
position : 'relative' ,
382
378
pt : '56.25%' /* 16:9 aspect ratio */ ,
383
- bgcolor : 'rgba(0,0,0,0.05) ' ,
379
+ bgcolor : '#FFFFFF ' ,
384
380
} }
385
381
>
386
- { /* Replace with actual images when available */ }
382
+ { /* 使用實際圖片替換佔位符 */ }
387
383
< Box
388
384
sx = { {
389
385
position : 'absolute' ,
@@ -396,9 +392,12 @@ export default function Page() {
396
392
justifyContent : 'center' ,
397
393
} }
398
394
>
399
- < Typography variant = "body1" >
400
- { feature . title } 截圖
401
- </ Typography >
395
+ < Image
396
+ src = { feature . imgPath }
397
+ alt = { `${ feature . title } 截圖` }
398
+ fill
399
+ style = { { objectFit : 'contain' } }
400
+ />
402
401
</ Box >
403
402
</ Box >
404
403
< CardContent >
@@ -588,13 +587,13 @@ export default function Page() {
588
587
borderRadius : 2 ,
589
588
overflow : 'hidden' ,
590
589
boxShadow : 3 ,
591
- bgcolor : 'rgba(0,0,0,0.05) ' ,
590
+ bgcolor : '#FFFFFF ' ,
592
591
display : 'flex' ,
593
592
alignItems : 'center' ,
594
593
justifyContent : 'center' ,
595
594
} }
596
595
>
597
- { /* Replace with actual image */ }
596
+ { /* 投資組合管理的佔位符 */ }
598
597
< Typography variant = "h6" color = "text.secondary" >
599
598
投資組合管理介面截圖
600
599
</ Typography >
@@ -665,49 +664,57 @@ export default function Page() {
665
664
連結
666
665
</ Typography >
667
666
< Stack spacing = { 1 } >
668
- < Link
669
- href = "/login"
670
- style = { {
671
- textDecoration : 'none' ,
672
- color : landingTheme . palette . text . secondary ,
673
- } }
674
- >
675
- < Typography variant = "body2" > 登入</ Typography >
676
- </ Link >
677
- < Link
678
- href = "#"
679
- style = { {
680
- textDecoration : 'none' ,
681
- color : landingTheme . palette . text . secondary ,
682
- } }
683
- >
684
- < Typography variant = "body2" > 關於我們</ Typography >
685
- </ Link >
667
+ < Typography variant = "body2" >
668
+ < Link
669
+ href = "/login"
670
+ style = { {
671
+ textDecoration : 'none' ,
672
+ color : landingTheme . palette . text . secondary ,
673
+ } }
674
+ >
675
+ 登入
676
+ </ Link >
677
+ </ Typography >
678
+ < Typography variant = "body2" >
679
+ < Link
680
+ href = "#"
681
+ style = { {
682
+ textDecoration : 'none' ,
683
+ color : landingTheme . palette . text . secondary ,
684
+ } }
685
+ >
686
+ 關於我們
687
+ </ Link >
688
+ </ Typography >
686
689
</ Stack >
687
690
</ Grid >
688
691
< Grid item xs = { 12 } md = { 4 } >
689
692
< Typography variant = "h6" gutterBottom >
690
693
法律資訊
691
694
</ Typography >
692
695
< Stack spacing = { 1 } >
693
- < Link
694
- href = "/privacy"
695
- style = { {
696
- textDecoration : 'none' ,
697
- color : landingTheme . palette . text . secondary ,
698
- } }
699
- >
700
- < Typography variant = "body2" > 隱私權政策</ Typography >
701
- </ Link >
702
- < Link
703
- href = "/terms"
704
- style = { {
705
- textDecoration : 'none' ,
706
- color : landingTheme . palette . text . secondary ,
707
- } }
708
- >
709
- < Typography variant = "body2" > 服務條款</ Typography >
710
- </ Link >
696
+ < Typography variant = "body2" >
697
+ < Link
698
+ href = "/privacy"
699
+ style = { {
700
+ textDecoration : 'none' ,
701
+ color : landingTheme . palette . text . secondary ,
702
+ } }
703
+ >
704
+ 隱私權政策
705
+ </ Link >
706
+ </ Typography >
707
+ < Typography variant = "body2" >
708
+ < Link
709
+ href = "/terms"
710
+ style = { {
711
+ textDecoration : 'none' ,
712
+ color : landingTheme . palette . text . secondary ,
713
+ } }
714
+ >
715
+ 服務條款
716
+ </ Link >
717
+ </ Typography >
711
718
</ Stack >
712
719
</ Grid >
713
720
</ Grid >
0 commit comments