27 lines
1.5 KiB
XML
27 lines
1.5 KiB
XML
import Image from "next/image"
|
|
import dexnet_cover from '@/public/images/kx3dex_em_comm_front.jpg'
|
|
import Link from "next/link"
|
|
|
|
export default function DexNetPage() {
|
|
return (
|
|
<div>
|
|
<h1 className="text-2xl font-black text-center mb-10">DexNet VHF/UHF Comm Plan Guide</h1>
|
|
|
|
<p className="text-lg">With the crazyness of the world I thought it would be worth while to have a communications plan for family and close personal friends. There are many other guides out there such as the S2 Underground for HF communications and a net. However, I did not see much in terms of a more localized one. So I set out to do just that. I have attached the file in a PDF format to be printed. The print is designed to be cut out and placed in 4in x 6in laminating pouches. Before laminating the pouches there are sections to be filled out and decided upon by those in your communications group. Personally I used a hole punch in the top left and used a small caribeener to hold them together.</p>
|
|
<div className="flex align-center justify-center">
|
|
<Image
|
|
src={dexnet_cover}
|
|
width={600}
|
|
height={600}
|
|
alt="DexNet Cover"
|
|
priority
|
|
className="rounded-lg mt-8 border justify-center"
|
|
/>
|
|
</div>
|
|
<h2 className="text-xl font-black text-center mt-10">
|
|
<Link href="KX3DEX_DexNet_v1.pdf">Download Version 1</Link>
|
|
</h2>
|
|
</div>
|
|
)
|
|
}
|