lukegbcom: add /tools/ndi

This commit is contained in:
Luke Granger-Brown 2022-07-15 17:07:08 +01:00
parent d1b8449d76
commit ca06522312

View file

@ -0,0 +1,37 @@
import Head from 'next/head'
import Link from 'next/link'
import styles from '../../styles/Post.module.scss'
import HeaderNav from '../../lib/HeaderNav'
import HeroImage from '../../lib/HeroImage'
export default function NdiTools() {
return (
<div className={styles.container}>
<HeaderNav />
<HeroImage image="https://p.lukegb.com/raw/ExactlySettlingGhoul.jpg" credit={{ text: "Joshua Hanson, Unsplash", url: "https://unsplash.com/photos/wFW4zlulBT8" }} withGradient="bottom-black">
NDI Tools Downloads
</HeroImage>
<Head>
<title>NDI Tools Downloads | Luke Granger-Brown</title>
<link rel="icon" href="/favicon.ico" />
<meta name="robots" content="noindex" />
</Head>
<main className={styles.main}>
<div className={styles.post}>
<h1>NDI Downloads</h1>
<p>By using any of these links, you agree to the NDI Terms.</p>
<ul>
<li><Link href="https://downloads.ndi.tv/Tools/NDI%205%20Tools.exe">NDI 5 Tools for Windows</Link> (<Link href="https://p.lukegb.com/raw/NamelyCreativeCow.exe?2022-07-15">cached 2022-07-15</Link>)</li>
<li><Link href="https://downloads.ndi.tv/Tools/NDIToolsInstaller.pkg">NDI Tools for Mac</Link> (<Link href="https://p.lukegb.com/raw/ImplicitlyHonestMollusk.pkg?2022-07-15">cached 2022-07-15</Link>)</li>
<li><Link href="https://downloads.ndi.tv/Tools/NDI%205%20Analysis%20BETA.exe">NDI Analysis for Windows</Link> (<Link href="https://p.lukegb.com/raw/UtterlySetGhost.exe?2022-07-15">cached 2022-07-15</Link>)</li>
<li><Link href="https://downloads.ndi.tv/SDK/NDI_SDK_Android/NDI%205%20Advanced%20SDK%20%28Android%29.exe">NDI SDK Android (Windows installer)</Link> (<Link href="https://p.lukegb.com/raw/UnlikelyEquippedLoon.exe?2022-07-15">cached 2022-07-15</Link>)</li>
<li><Link href="https://downloads.ndi.tv/SDK/NDI_SDK/NDI%205%20SDK.exe">NDI SDK Windows</Link> (<Link href="https://p.lukegb.com/raw/BlindlyRegularBeetle.exe?2022-07-15">cached 2022-07-15</Link>)</li>
<li><Link href="https://downloads.ndi.tv/SDK/NDI_SDK_Mac/Install_NDI_SDK_v5_Apple.pkg">NDI SDK iOS/macOS</Link> (<Link href="https://p.lukegb.com/raw/LegallyThoroughFalcon.pkg?2022-07-15">cached 2022-07-15</Link>)</li>
<li><Link href="https://downloads.ndi.tv/SDK/NDI_SDK_Linux/Install_NDI_SDK_v5_Linux.tar.gz">NDI SDK Linux</Link> (<Link href="https://p.lukegb.com/raw/AbsolutelyIntimateHornet.tar.gz?2022-07-15">cached 2022-07-15</Link>)</li>
</ul>
</div>
</main>
</div>
)
}