mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-31 06:01:26 +00:00
Taller hero for repository list, messaging-style overview, 72px explorer gap.
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
import type { Language } from '@repo/content/schemas'
|
|
|
|
import TechStackExplorer from '@/components/sections/shared/tech-stack-explorer'
|
|
|
|
export default function NetworkingTechStack({ locale }: { locale: Language }) {
|
|
return (
|
|
<div className="md:mb-25">
|
|
<TechStackExplorer locale={locale} contentClassName="pb-18 md:pb-6" />
|
|
</div>
|
|
)
|
|
}
|