File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
clients/apps/web/src/app/(main)/(landing)/resources Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ export const metadata: Metadata = {
32
32
}
33
33
34
34
const resourceLinks = [
35
+ {
36
+ title : 'Documentation' ,
37
+ description : 'Learn the ins and outs of the Polar platform' ,
38
+ href : '/docs' ,
39
+ target : '_blank' ,
40
+ } ,
35
41
{
36
42
title : 'Why Polar' ,
37
43
description :
@@ -48,7 +54,7 @@ const resourceLinks = [
48
54
href : '/resources/merchant-of-record' ,
49
55
description : 'Learn the differences between PSPs and Merchant of Records' ,
50
56
} ,
51
- ] as const
57
+ ]
52
58
53
59
export default function Resources ( ) {
54
60
return (
@@ -67,6 +73,7 @@ export default function Resources() {
67
73
key = { link . title }
68
74
className = "dark:hover:bg-polar-900 dark:border-polar-700 flex w-full cursor-pointer flex-col gap-6 border border-gray-300 p-6 transition-colors duration-200 hover:bg-gray-100"
69
75
href = { link . href }
76
+ target = { link . target }
70
77
>
71
78
< ArrowOutwardOutlined fontSize = "inherit" />
72
79
< div className = "flex flex-col gap-2" >
You can’t perform that action at this time.
0 commit comments