Added layout to lets get started bvn

This commit is contained in:
Ebube
2024-03-19 09:04:49 +01:00
parent 2a59165054
commit 79f5af7692
13 changed files with 107 additions and 11 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from "react";
import { LetsGetStartedLayout } from "../layouts";
import { LetsGetStarted } from "../components";
const LetsGetStatedPage: React.FC = () => {
return (
<LetsGetStartedLayout>
<LetsGetStarted />
</LetsGetStartedLayout>
);
};
export default LetsGetStatedPage;