Skip to content

Commit f82fd26

Browse files
Carousel: reorder so JS and TS aren't adjacent
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 7d71bd7 commit f82fd26

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/TechCarousel.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ interface Tech {
88

99
const TECHS: Tech[] = [
1010
{ name: 'TypeScript', slug: 'typescript' },
11-
{ name: 'JavaScript', slug: 'javascript' },
1211
{ name: 'Python', slug: 'python' },
1312
{ name: 'React', slug: 'react' },
13+
{ name: 'JavaScript', slug: 'javascript' },
1414
{ name: 'Next.js', slug: 'nextdotjs' },
15-
{ name: 'Node.js', slug: 'nodedotjs' },
16-
{ name: 'MDX', slug: 'mdx' },
1715
{ name: 'Tailwind CSS', slug: 'tailwindcss' },
1816
{ name: 'HTML5', slug: 'html5' },
17+
{ name: 'MDX', slug: 'mdx' },
18+
{ name: 'Node.js', slug: 'nodedotjs' },
1919
{ name: 'CSS', slug: 'css' },
2020
{ name: 'Docusaurus', slug: 'docusaurus' },
2121
{ name: 'Vercel', slug: 'vercel' },
22-
{ name: 'Supabase', slug: 'supabase' },
2322
{ name: 'PostgreSQL', slug: 'postgresql' },
23+
{ name: 'Supabase', slug: 'supabase' },
2424
{ name: 'Neo4j', slug: 'neo4j' },
2525
{ name: 'Docker', slug: 'docker' },
2626
{ name: 'GitHub Actions', slug: 'githubactions' },

0 commit comments

Comments
 (0)