Neah_Front/components/gitlab/gitlab-frame.tsx
2025-04-08 17:59:33 +02:00

12 lines
224 B
TypeScript

"use client";
import { IframeContainer } from "@/components/shared/iframe-container";
export function GitlabFrame() {
return (
<IframeContainer
src="https://git.slm-lab.net"
title="GitLab"
/>
);
}