Skip to content

Commit 3ae8a1d

Browse files
committed
fixes
1 parent 2de818e commit 3ae8a1d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/components/CodeBlock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const CodeBlock = ({ children, language = 'javascript', showCopy = true, ...prop
6565
// Node-Boot decorators
6666
{ pattern: /@(NodeBootApplication|EnableAutoConfiguration|Autowired|RestController|PostMapping|GetMapping|RequestBody|PreAuthorize|RateLimit|Injectable|InjectRepository|Repository|Service|Component|Controller|PathVariable|RequestParam|Valid|Transactional|EnableDI|EnableOpenApi|EnableSwaggerUI|EnableActuator|EnableRepositories|EnableComponentScan|EnableScheduling|EnableHttpClients|EnableValidations|Post|Get|HttpCode|Authorized|OpenAPI|ResponseSchema|DataRepository|ValidatorConstraint|IsNotEmpty|Matches|IsValidQueryFilter|Configuration|Bean|EnableOpenAI)\b/, color: '#07E770', weight: 600 },
6767
// Node-Boot Keywords
68-
{ pattern: /\b(useNodeBoot|useRepository|useService|useConfig|usePactum|useMongoContainer|NotFoundError|orElseThrow|optionalOf|ifPresentThrow|runOnTransactionCommit|PagingAndSortingRepository|ValidatorConstraintInterface|HttpServer)\b/, color: '#07E770', weight: 500 },
68+
{ pattern: /\b(useNodeBoot|useRepository|useService|useConfig|usePactum|useMongoContainer|NotFoundError|orElseThrow|optionalOf|ifPresentThrow|runOnTransactionCommit|PagingAndSortingRepository|ValidatorConstraintInterface|HttpServer|ExpressServer|FastifyServer|KoaServer)\b/, color: '#07E770', weight: 500 },
6969
// Keywords
7070
{ pattern: /\b(import|export|from|class|function|const|let|var|async|await|return|if|else|for|while|try|catch|new|this|super|extends|implements|interface|type|private|constructor|readonly|Promise|public)\b/, color: '#ff7b72', weight: 500 },
7171
// Strings

src/components/EcosystemSection.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const EcosystemSection = () => {
2222
{ name: 'Node', icon: '/icons/Node.js.svg' },
2323
{ name: 'Express', icon: '/icons/Express.svg' },
2424
{ name: 'Fastify', icon: '/icons/Fastify.svg' },
25-
{ name: 'Koa', icon: '/icons/Koa.png' },
25+
{ name: 'Koa', icon: '/icons/koa.png' },
2626
{ name: 'Encore', icon: '/icons/encore.svg' }
2727
]
2828
},
@@ -33,7 +33,7 @@ const EcosystemSection = () => {
3333
color: '#3b82f6',
3434
technologies: [
3535
{ name: 'AWS Lambda', icon: '/icons/Lambda.svg' },
36-
{ name: 'Netlify', icon: '/icons/Netlify.svg' },
36+
{ name: 'Netlify', icon: '/icons/netlify.svg' },
3737
{ name: 'Vercel', icon: '/icons/Vercel.svg' },
3838
{ name: 'Google Cloud Functions', icon: '/icons/Cloud Functions.svg' },
3939
{ name: 'Cloudflare', icon: '/icons/Cloudflare.svg' }
@@ -48,7 +48,7 @@ const EcosystemSection = () => {
4848
{ name: 'AWS', icon: '/icons/AWS.svg' },
4949
{ name: 'Firebase', icon: '/icons/Firebase.svg' },
5050
{ name: 'Redis', icon: '/icons/Redis.svg' },
51-
{ name: 'OpenAI', icon: '/icons/OpenAI.svg' },
51+
{ name: 'OpenAI', icon: '/icons/openai.svg' },
5252
{ name: 'OpenAPI', icon: '/icons/OpenAPI.svg' },
5353
{ name: 'Backstage', icon: '/icons/backstage.svg' },
5454
]
@@ -59,7 +59,7 @@ const EcosystemSection = () => {
5959
icon: <SpeedIcon sx={{ fontSize: 20 }} />,
6060
color: '#f59e0b',
6161
technologies: [
62-
{ name: 'PM2', icon: '/icons/PM2.svg' },
62+
{ name: 'PM2', icon: '/icons/pm2.svg' },
6363
{ name: 'Platformatic', icon: '/icons/platformatic.png' },
6464
{ name: 'Docker', icon: '/icons/Docker.svg' },
6565
{ name: 'Kubernetes', icon: '/icons/Kubernetes.svg' }
@@ -75,10 +75,10 @@ const EcosystemSection = () => {
7575
{ name: 'MySQL', icon: '/icons/MySQL.svg' },
7676
{ name: 'SQLite', icon: '/icons/SQLite.svg' },
7777
{ name: 'PostgreSQL', icon: '/icons/PostgresSQL.svg' },
78-
{ name: 'MariaDB', icon: '/icons/MariaDB.svg' },
78+
{ name: 'MariaDB', icon: '/icons/mariaDB.svg' },
7979
{ name: 'Oracle', icon: '/icons/Oracle.svg' },
8080
{ name: 'SQL Server', icon: '/icons/Microsoft SQL Server.svg' },
81-
{ name: 'CockroachDB', icon: '/icons/CockroachDB.svg' }
81+
{ name: 'CockroachDB', icon: '/icons/cockroachdb.svg' }
8282
]
8383
}
8484
];

0 commit comments

Comments
 (0)