13 lines
310 B
JavaScript
13 lines
310 B
JavaScript
import Owner from "@/app/components/OwnerComponents/Owner";
|
|
export const metadata = {
|
|
title: "انشاء حساب صاحب عقار",
|
|
description: "انشاء حساب والتسجيل ك صاحب عقار",
|
|
};
|
|
export default function OwnerRegisterPage() {
|
|
return (
|
|
<>
|
|
<Owner />
|
|
</>
|
|
);
|
|
}
|