diff --git a/app/cost-calculator/layout.tsx b/app/cost-calculator/layout.tsx new file mode 100644 index 00000000000..b46029c0996 --- /dev/null +++ b/app/cost-calculator/layout.tsx @@ -0,0 +1,18 @@ +import { Layout } from 'fumadocs-ui/layout'; +import type { ReactNode } from 'react'; +import { Footer } from '@/components/footer'; +import { homebaseOptions } from '@/app/layout.config'; + +export default function HomeLayout({ + children, +}: { + children: ReactNode; +}): React.ReactElement { + + return ( + + {children} +