17 lines
881 B
XML
17 lines
881 B
XML
export default async function Home() {
|
|
|
|
return (
|
|
<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'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">
|
|
if there is anything you have for suggestions on projects you'd like to see a writeup on email me at bluebulletrl@gmail.com. Still need to setup email for this domain.
|
|
</div>
|
|
<div className="grid grid-cols-1 md:grid-cols-1 mt-5 gap-5">
|
|
Coming soon will be an updated DexNet guide that will include Meshtastic Information.
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|