kx3dex_radio/app/page.tsx

11 lines
349 B
TypeScript
Raw Normal View History

2024-03-24 06:08:52 +00:00
import { Button } from "@/components/ui/button";
export default async function Home() {
return (
<div className="grid grid-cols-1 md:grid-cols-1 mt-5 gap-5">
2024-03-24 06:29:24 +00:00
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.
2024-03-24 06:08:52 +00:00
</div>
);
}