Skip to content

Commit 793cdbf

Browse files
committed
Fix landing
1 parent 137640a commit 793cdbf

29 files changed

+2307
-812
lines changed
File renamed without changes.

apps/landing/devup.json

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
{
2+
"theme": {
3+
"colors": {
4+
"light": {
5+
"primary": "#5A44FF",
6+
"primaryHover": "#4836D9",
7+
"secondary": "#85A5F2",
8+
"accent": "#006BFF",
9+
"text": "#212121",
10+
"textLight": "#7F7F7F",
11+
"textMuted": "#9ca3af",
12+
"title": "#212121",
13+
"bg": "#ffffff",
14+
"bgSecondary": "#F7F7F8",
15+
"bgTertiary": "#f3f4f6",
16+
"border": "#E4E4E4",
17+
"containerBackground": "#FBFBFB",
18+
"success": "#10b981",
19+
"warning": "#f59e0b",
20+
"error": "#ef4444",
21+
"codeBg": "#1E1E1E",
22+
"codeText": "#e5e7eb",
23+
"link": "#006BFF"
24+
},
25+
"dark": {
26+
"primary": "#9086FF",
27+
"primaryHover": "#7A70E6",
28+
"secondary": "#2A4586",
29+
"accent": "#60a5fa",
30+
"text": "#f3f4f6",
31+
"textLight": "#d1d5db",
32+
"textMuted": "#9ca3af",
33+
"title": "#ffffff",
34+
"bg": "#121212",
35+
"bgSecondary": "#1E1E1E",
36+
"bgTertiary": "#2A2A2A",
37+
"border": "#333333",
38+
"containerBackground": "#1A1A1A",
39+
"success": "#34d399",
40+
"warning": "#fbbf24",
41+
"error": "#f87171",
42+
"codeBg": "#0f172a",
43+
"codeText": "#e2e8f0",
44+
"link": "#60a5fa"
45+
}
46+
},
47+
"typography": {
48+
"h1": {
49+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
50+
"fontSize": "32px",
51+
"fontWeight": 800,
52+
"lineHeight": 1.2,
53+
"letterSpacing": "-0.03em"
54+
},
55+
"h2": {
56+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
57+
"fontSize": "24px",
58+
"fontWeight": 700,
59+
"lineHeight": 1.3,
60+
"letterSpacing": "-0.03em"
61+
},
62+
"h3": {
63+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
64+
"fontSize": "18px",
65+
"fontWeight": 700,
66+
"lineHeight": 1.4,
67+
"letterSpacing": "-0.03em"
68+
},
69+
"h4": {
70+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
71+
"fontSize": "20px",
72+
"fontWeight": 700,
73+
"lineHeight": 1.4,
74+
"letterSpacing": "-0.03em"
75+
},
76+
"h5": {
77+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
78+
"fontSize": "16px",
79+
"fontWeight": 600,
80+
"lineHeight": 1.4,
81+
"letterSpacing": "-0.03em"
82+
},
83+
"h6": {
84+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
85+
"fontSize": "14px",
86+
"fontWeight": 600,
87+
"lineHeight": 1.5,
88+
"letterSpacing": "-0.03em"
89+
},
90+
"body": {
91+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
92+
"fontSize": "14px",
93+
"fontWeight": 400,
94+
"lineHeight": 1.6,
95+
"letterSpacing": "-0.03em"
96+
},
97+
"bodyLarge": {
98+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
99+
"fontSize": "16px",
100+
"fontWeight": 400,
101+
"lineHeight": 1.6,
102+
"letterSpacing": "-0.03em"
103+
},
104+
"textL": {
105+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
106+
"fontSize": "16px",
107+
"fontWeight": 400,
108+
"lineHeight": 1.6,
109+
"letterSpacing": "-0.03em"
110+
},
111+
"button": {
112+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
113+
"fontSize": "16px",
114+
"fontWeight": 600,
115+
"lineHeight": 1,
116+
"letterSpacing": "-0.03em"
117+
},
118+
"buttonM": {
119+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
120+
"fontSize": "14px",
121+
"fontWeight": 600,
122+
"lineHeight": 1,
123+
"letterSpacing": "-0.03em"
124+
},
125+
"code": {
126+
"fontFamily": "D2Coding, Monaco, 'Courier New', monospace",
127+
"fontSize": "14px",
128+
"lineHeight": 1.6,
129+
"letterSpacing": "0"
130+
},
131+
"caption": {
132+
"fontFamily": "Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, sans-serif",
133+
"fontSize": "12px",
134+
"fontWeight": 400,
135+
"lineHeight": 1.5,
136+
"letterSpacing": "-0.03em"
137+
}
138+
}
139+
}
140+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
import { DevupUI } from '@devup-ui/next-plugin'
12
import type { NextConfig } from 'next'
2-
import DevupUI from '@devup-ui/next-plugin'
33

44
const nextConfig: NextConfig = {
55
pageExtensions: ['js', 'jsx', 'ts', 'tsx'],
66
output: 'export',
77
reactCompiler: true,
88
}
99

10-
export default DevupUI(nextConfig)
10+
export default DevupUI({}, nextConfig)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
},
1212
"dependencies": {
1313
"@devup-ui/react": "latest",
14-
"@devup-ui/reset": "latest",
14+
"@devup-ui/reset-css": "latest",
1515
"clsx": "^2.1.1",
16-
"next": "^15.1.3",
17-
"react": "^19.0.0",
18-
"react-dom": "^19.0.0"
16+
"next": "^16.1.1",
17+
"react": "^19.2.3",
18+
"react-dom": "^19.2.3"
1919
},
2020
"devDependencies": {
2121
"@devup-ui/next-plugin": "latest",
22-
"@types/node": "^22",
22+
"@types/node": "^25",
2323
"@types/react": "^19",
2424
"@types/react-dom": "^19",
2525
"eslint": "^9",
26-
"eslint-config-next": "^15.1.3",
26+
"eslint-config-next": "^16.1.1",
2727
"typescript": "^5"
2828
}
2929
}

0 commit comments

Comments
 (0)