mns-website/src/Pages/Privacy/Page.tsx
Moaz Dawalibi e113687c91 clean
2024-08-03 17:04:56 +03:00

14 lines
269 B
TypeScript

import Info from "../../Components/Info/Info"
const Page = () => {
return (
<Info
headerText="Privacy Policy"
title="Explanatory text on the processing of personal data"
isLoading={false}
isPrivacy={true}
/>
)
}
export default Page