Files
JulesFILIOT 7ea5fdfdd6 fix(web): adjust messaging tech stack mobile bottom spacing
Set messaging tech stack mobile bottom padding to keep the border-to-border spacing consistent before related articles.
2026-06-03 15:46:27 +09:00

12 lines
352 B
TypeScript

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