link-stack/apps/link/app/(main)/docs/_components/DocsWrapper.tsx

30 lines
584 B
TypeScript
Raw Normal View History

2023-10-02 14:22:48 +02:00
"use client";
import { FC } from "react";
import { Grid } from "@mui/material";
import Iframe from "react-iframe";
2025-11-10 14:55:22 +01:00
const docsUrl = "https://digiresilience.org/docs/link/about/";
2023-10-02 14:22:48 +02:00
export const DocsWrapper: FC = () => (
<Grid
container
spacing={0}
sx={{ height: "100%", width: "100%" }}
direction="column"
>
2024-05-09 07:42:44 +02:00
<Grid
item
sx={{ height: "calc(100vh + 120px)", width: "100%", mt: "-121px" }}
>
2023-10-02 14:22:48 +02:00
<Iframe
id="docs"
2025-11-10 14:55:22 +01:00
url={docsUrl}
2023-10-02 14:22:48 +02:00
width="100%"
height="100%"
frameBorder={0}
/>
</Grid>
</Grid>
);