diff --git a/src/app/(account-pages)/layout.tsx b/src/app/(account-pages)/layout.tsx new file mode 100644 index 0000000..eb4e2b1 --- /dev/null +++ b/src/app/(account-pages)/layout.tsx @@ -0,0 +1,19 @@ +import React, { FC } from "react"; +import { Nav } from "./(components)/Nav"; + +export interface CommonLayoutProps { + children?: React.ReactNode; +} + +const CommonLayout: FC = ({ children }) => { + return ( +
+
+
+
{children}
+
+ ); +}; + +export default CommonLayout;