Skip to content

Commit 510e7e3

Browse files
committed
fix text
1 parent d772b76 commit 510e7e3

3 files changed

Lines changed: 58 additions & 10 deletions

File tree

packages/webapp/src/i18n/locales/en/about.json

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,33 @@
112112
"label": "The Architecture",
113113
"title": "Modern, blazing-fast, powered by Bun.",
114114
"stack": [
115-
{ "layer": "Web App", "items": ["React 19", "Vite", "TailwindCSS v4", "Zustand"] },
116-
{ "layer": "Server / API", "items": ["Hono", "Bun runtime", "PostgreSQL", "Prisma ORM"] },
117-
{ "layer": "Components", "items": ["Rollup", "Apache ECharts 5", "OpenLayers 10", "TypeScript"] }
115+
{
116+
"layer": "Web App",
117+
"items": [
118+
"React 19",
119+
"Vite",
120+
"TailwindCSS v4",
121+
"Zustand"
122+
]
123+
},
124+
{
125+
"layer": "Server / API",
126+
"items": [
127+
"Hono",
128+
"Bun runtime",
129+
"PostgreSQL",
130+
"Prisma ORM"
131+
]
132+
},
133+
{
134+
"layer": "Components",
135+
"items": [
136+
"Rollup",
137+
"Apache ECharts 5",
138+
"OpenLayers 10",
139+
"TypeScript"
140+
]
141+
}
118142
]
119143
},
120144
"cta": {

packages/webapp/src/i18n/locales/it/about.json

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"hero": {
33
"chip": "Open Source · GPL-3.0",
4-
"headline1": "Visualizzazione Dati Accessibile",
5-
"headlineGradient": "e Open-Source",
4+
"headline1": "Visualizzazione Dati OpenSource",
5+
"headlineGradient": "e Accessibile",
66
"headline2": "per il Web.",
77
"subheadline": "Trasforma dati grezzi in grafici e dashboard bellissimi, conformi e facilmente integrabili. Graph Italia è il toolkit open-source completo pensato per colmare il divario tra creatori di contenuto non tecnici e l'integrazione web moderna.",
88
"ctas": {
@@ -112,9 +112,33 @@
112112
"label": "L'Architettura",
113113
"title": "Moderno, velocissimo, alimentato da Bun.",
114114
"stack": [
115-
{ "layer": "Web App", "items": ["React 19", "Vite", "TailwindCSS v4", "Zustand"] },
116-
{ "layer": "Server / API", "items": ["Hono", "Bun runtime", "PostgreSQL", "Prisma ORM"] },
117-
{ "layer": "Componenti", "items": ["Rollup", "Apache ECharts 5", "OpenLayers 10", "TypeScript"] }
115+
{
116+
"layer": "Web App",
117+
"items": [
118+
"React 19",
119+
"Vite",
120+
"TailwindCSS v4",
121+
"Zustand"
122+
]
123+
},
124+
{
125+
"layer": "Server / API",
126+
"items": [
127+
"Hono",
128+
"Bun runtime",
129+
"PostgreSQL",
130+
"Prisma ORM"
131+
]
132+
},
133+
{
134+
"layer": "Componenti",
135+
"items": [
136+
"Rollup",
137+
"Apache ECharts 5",
138+
"OpenLayers 10",
139+
"TypeScript"
140+
]
141+
}
118142
]
119143
},
120144
"cta": {

packages/webapp/src/pages/about.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,8 +428,8 @@ export default function AboutPage() {
428428
<div
429429
key={level.badge}
430430
className={`flex flex-col rounded-2xl border p-6 shadow-sm transition-shadow hover:shadow-md ${i === 1
431-
? "border-primary/40 bg-primary/5 ring-1 ring-primary/20"
432-
: "border-base-300 bg-base-100"
431+
? "border-primary/40 bg-primary/5 ring-1 ring-primary/20"
432+
: "border-base-300 bg-base-100"
433433
}`}
434434
>
435435
<div className="flex items-center justify-between mb-4">

0 commit comments

Comments
 (0)