Files
imphnen-frontend-service/apps/landing/src/app/page.tsx
T

11 lines
225 B
TypeScript
Raw Normal View History

import { Button } from '@imphnen-frontend-service/shadcn-ui/atoms';
2025-04-26 21:13:19 +07:00
export default function Page() {
return (
<>
<h1 className="text-2xl underline">Hello World</h1>
<Button>Click Me</Button>
</>
);
2025-04-26 20:32:58 +07:00
}