Files
onix/onix-gui/app/install/create/page.js
Mishalabdullah 4ac9ce8815 GUI for onix
2024-05-02 21:01:55 +05:30

68 lines
2.1 KiB
JavaScript

"use client";
import Link from "next/link";
import styles from "../../page.module.css";
import { Ubuntu_Mono } from "next/font/google";
import Image from "next/image";
const ubuntuMono = Ubuntu_Mono({
weight: "400",
style: "normal",
subsets: ["latin"],
});
export default function Home() {
return (
<>
<main className={ubuntuMono.className}>
<div className={styles.mainContainer}>
<button
onClick={() => window.history.back()}
className={styles.backButton}
>
Back
</button>
<p className={styles.mainText}>Create a Production Network</p>
<div className={styles.boxesContainer}>
<Link
href="/setup/gateway"
style={{ textDecoration: "underline", color: "white" }}
>
<div className={styles.box}>
<Image alt="arrow" width={20} height={20} src="/arrow.png" />
<p className={styles.boxText}>Gateway</p>
</div>
</Link>
<Link href="/setup/bap">
<div
className={styles.box}
style={{ textDecoration: "underline", color: "white" }}
>
<Image alt="arrow" width={20} height={20} src="/arrow.png" />
<p className={styles.boxText}>BAP Adapter</p>
</div>
</Link>
<Link href="/setup/bpp">
<div
className={styles.box}
style={{ textDecoration: "underline", color: "white" }}
>
<Image alt="arrow" width={20} height={20} src="/arrow.png" />
<p className={styles.boxText}>BPP Adapter</p>
</div>
</Link>
<Link
href="/setup/registry"
style={{ textDecoration: "underline", color: "white" }}
>
<div className={styles.box}>
<Image alt="arrow" width={20} height={20} src="/arrow.png" />
<p className={styles.boxText}>Registry</p>
</div>
</Link>
</div>
</div>
</main>
</>
);
}