Files
JulesFILIOT 73a034b4f0 fix(web): align storage tech stack to related articles spacing
Set mobile storage tech-stack bottom spacing and remove extra top offset before related articles to match intended section rhythm.
2026-06-03 16:51:47 +09:00

8 lines
296 B
TypeScript

import type { Language } from '@repo/content/schemas'
import TechStackExplorer from '@/components/sections/shared/tech-stack-explorer'
export default function StorageTechStack({ locale }: { locale: Language }) {
return <TechStackExplorer locale={locale} contentClassName="pb-18 md:pb-6" />
}