kx3dex_radio/app/page.tsx

17 lines
925 B
TypeScript
Raw Permalink Normal View History

2024-03-24 06:08:52 +00:00
export default async function Home() {
return (
2024-05-05 02:36:24 +00:00
<div>
<div className="grid grid-cols-1 md:grid-cols-1 mt-5 gap-5">
This is my little corner of the internet to share my radio projects on things I&apos;m doing. Things I find and build that seem to not be documented anywhere. I have created pages for some of the projects I have done such as a communcations plan template. Also my go kit builds.
</div>
<div className="grid grid-cols-1 md:grid-cols-1 mt-5 gap-5">
2024-05-06 17:03:39 +00:00
if there is anything you have for suggestions on projects you&apos;d like to see a writeup on email me at bluebulletrl@gmail.com. Still need to setup email for this domain.
2024-05-05 02:36:24 +00:00
</div>
2024-05-05 07:14:09 +00:00
<div className="grid grid-cols-1 md:grid-cols-1 mt-5 gap-5">
2024-08-15 19:49:05 +00:00
Coming soon will be an updated DexNet guide that will include Meshtastic Information. New document will be uploaded End of August.
2024-05-05 07:14:09 +00:00
</div>
2024-03-24 06:08:52 +00:00
</div>
);
}