15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
import { BaseBox, MapCustom, StackCustom, TextCustom } from "@/components";
|
|
|
|
export default function Portofolio_BusinessLocation() {
|
|
return (
|
|
<>
|
|
<BaseBox>
|
|
<StackCustom>
|
|
<TextCustom bold>Lokasi Bisnis</TextCustom>
|
|
<MapCustom />
|
|
</StackCustom>
|
|
</BaseBox>
|
|
</>
|
|
);
|
|
}
|