copied new version
This commit is contained in:
58
onix-gui/GUI/app/install/configure/page.js
Normal file
58
onix-gui/GUI/app/install/configure/page.js
Normal file
@@ -0,0 +1,58 @@
|
||||
"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}>Configure 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
67
onix-gui/GUI/app/install/create/page.js
Normal file
67
onix-gui/GUI/app/install/create/page.js
Normal file
@@ -0,0 +1,67 @@
|
||||
"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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
60
onix-gui/GUI/app/install/local/page.js
Normal file
60
onix-gui/GUI/app/install/local/page.js
Normal file
@@ -0,0 +1,60 @@
|
||||
"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}>
|
||||
Set up a network on your local machine
|
||||
</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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
58
onix-gui/GUI/app/install/merge/page.js
Normal file
58
onix-gui/GUI/app/install/merge/page.js
Normal file
@@ -0,0 +1,58 @@
|
||||
"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}>Merge multiple networks</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</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</p>
|
||||
</div>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</>
|
||||
);
|
||||
}
|
||||
54
onix-gui/GUI/app/install/page.js
Normal file
54
onix-gui/GUI/app/install/page.js
Normal file
@@ -0,0 +1,54 @@
|
||||
"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.mainHeading}>ONIX</p>
|
||||
<p className={styles.mainText}>
|
||||
Open Network In A Box, is a project designed to effortlessly set up
|
||||
and maintain Beckn network that is scalable, secure and easy to
|
||||
maintain.
|
||||
</p>
|
||||
<div className={styles.boxesContainer}>
|
||||
<Link
|
||||
href="/install/join"
|
||||
style={{ textDecoration: "underline", color: "white" }}
|
||||
>
|
||||
<div className={styles.box}>
|
||||
<Image alt="arrow" width={20} height={20} src="/arrow.png" />
|
||||
<p className={styles.boxText}>Join an existing network</p>
|
||||
</div>
|
||||
</Link>
|
||||
<Link
|
||||
href="/install/create"
|
||||
style={{ textDecoration: "underline", color: "white" }}
|
||||
>
|
||||
<div className={styles.box}>
|
||||
<Image alt="arrow" width={20} height={20} src="/arrow.png" />
|
||||
<p className={styles.boxText}>Create new production network</p>
|
||||
</div>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user