Files
SweetHome/app/register/owner/page.js

13 lines
310 B
JavaScript
Raw Normal View History

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