copied new version
This commit is contained in:
68
onix-gui/GUI/app/install/join/page.js
Normal file
68
onix-gui/GUI/app/install/join/page.js
Normal file
@@ -0,0 +1,68 @@
|
||||
"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}>Join an existing 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"
|
||||
style={{
|
||||
textDecoration: "underline",
|
||||
color: "white",
|
||||
}}
|
||||
>
|
||||
<div className={styles.box}>
|
||||
<Image alt="arrow" width={20} height={20} src="/arrow.png" />
|
||||
<p className={styles.boxText}>BAP Adapter</p>
|
||||
</div>
|
||||
</Link>
|
||||
<Link
|
||||
href="/setup/bpp"
|
||||
style={{
|
||||
textDecoration: "underline",
|
||||
color: "white",
|
||||
}}
|
||||
>
|
||||
<div className={styles.box}>
|
||||
<Image alt="arrow" width={20} height={20} src="/arrow.png" />
|
||||
<p className={styles.boxText}>BPP Adapter</p>
|
||||
</div>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user