added Terms and Condition Page

This commit is contained in:
Ebube
2024-03-18 17:23:04 +01:00
parent db08d1201c
commit df6fe828e3
12 changed files with 890 additions and 32 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from "react";
import { HomeLayout } from "../layouts";
import { TsAndCs } from "../components";
const TermsAndConditionPage = () => {
return (
<HomeLayout>
<TsAndCs />
</HomeLayout>
);
};
export default TermsAndConditionPage;