Skip to content

Commit 2d59021

Browse files
authored
chore(template): reformat app and component content files (#308)
* chore(template): reformat app and component content files * Normalize quotes and format imports Apply code-style normalization across the Next template: convert double quotes to single quotes, adjust import ordering and minor spacing/quote fixes in various app pages and components. Affected files under packages/create-sei/templates/next-template: src/app/development/page.tsx, src/app/layout.tsx, src/app/page.tsx, src/app/resources/page.tsx, src/app/resources/resources.ts, src/components/default/index.tsx, and src/components/landing/index.tsx. No functional logic changes.
1 parent 184d715 commit 2d59021

1 file changed

Lines changed: 55 additions & 7 deletions

File tree

  • packages/create-sei/templates/next-template/src/components/landing

packages/create-sei/templates/next-template/src/components/landing/index.tsx

Lines changed: 55 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,33 +21,81 @@ export default function Landing() {
2121

2222
{/* Tech Stack Badges */}
2323
<Group gap="xs" mt="sm">
24-
<Badge variant="light" color="blue" style={{ backgroundColor: 'rgb(239 246 255)', color: 'rgb(29 78 216)', border: '1px solid rgb(191 219 254)' }}>
24+
<Badge
25+
variant="light"
26+
color="blue"
27+
style={{
28+
backgroundColor: 'rgb(239 246 255)',
29+
color: 'rgb(29 78 216)',
30+
border: '1px solid rgb(191 219 254)',
31+
}}
32+
>
2533
Next.js 14
2634
</Badge>
2735
<Badge
2836
variant="light"
2937
color="violet"
30-
style={{ backgroundColor: 'rgb(250 245 255)', color: 'rgb(109 40 217)', border: '1px solid rgb(196 181 253)' }}
38+
style={{
39+
backgroundColor: 'rgb(250 245 255)',
40+
color: 'rgb(109 40 217)',
41+
border: '1px solid rgb(196 181 253)',
42+
}}
3143
>
3244
Mantine UI
3345
</Badge>
34-
<Badge variant="light" color="cyan" style={{ backgroundColor: 'rgb(236 254 255)', color: 'rgb(14 116 144)', border: '1px solid rgb(165 243 252)' }}>
46+
<Badge
47+
variant="light"
48+
color="cyan"
49+
style={{
50+
backgroundColor: 'rgb(236 254 255)',
51+
color: 'rgb(14 116 144)',
52+
border: '1px solid rgb(165 243 252)',
53+
}}
54+
>
3555
Tailwind CSS
3656
</Badge>
37-
<Badge variant="light" color="yellow" style={{ backgroundColor: 'rgb(254 249 195)', color: 'rgb(161 98 7)', border: '1px solid rgb(254 240 138)' }}>
57+
<Badge
58+
variant="light"
59+
color="yellow"
60+
style={{
61+
backgroundColor: 'rgb(254 249 195)',
62+
color: 'rgb(161 98 7)',
63+
border: '1px solid rgb(254 240 138)',
64+
}}
65+
>
3866
Biome
3967
</Badge>
4068
<Badge
4169
variant="light"
4270
color="orange"
43-
style={{ backgroundColor: 'rgb(255 247 237)', color: 'rgb(194 65 12)', border: '1px solid rgb(254 215 170)' }}
71+
style={{
72+
backgroundColor: 'rgb(255 247 237)',
73+
color: 'rgb(194 65 12)',
74+
border: '1px solid rgb(254 215 170)',
75+
}}
4476
>
4577
RainbowKit
4678
</Badge>
47-
<Badge variant="light" color="teal" style={{ backgroundColor: 'rgb(240 253 250)', color: 'rgb(15 118 110)', border: '1px solid rgb(153 246 228)' }}>
79+
<Badge
80+
variant="light"
81+
color="teal"
82+
style={{
83+
backgroundColor: 'rgb(240 253 250)',
84+
color: 'rgb(15 118 110)',
85+
border: '1px solid rgb(153 246 228)',
86+
}}
87+
>
4888
Wagmi + Viem
4989
</Badge>
50-
<Badge variant="light" color="dark" style={{ backgroundColor: 'rgb(249 250 251)', color: 'rgb(17 24 39)', border: '1px solid rgb(209 213 219)' }}>
90+
<Badge
91+
variant="light"
92+
color="dark"
93+
style={{
94+
backgroundColor: 'rgb(249 250 251)',
95+
color: 'rgb(17 24 39)',
96+
border: '1px solid rgb(209 213 219)',
97+
}}
98+
>
5199
Vercel
52100
</Badge>
53101
</Group>

0 commit comments

Comments
 (0)