copied new version

This commit is contained in:
Mishalabdullah
2024-05-03 11:10:14 +05:30
parent 80e9e7e6cb
commit ff0cd83613
49 changed files with 300 additions and 644 deletions

View 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>
</>
);
}