diff --git a/apps/sim/app/(landing)/building/layout.tsx b/apps/sim/app/(landing)/building/layout.tsx new file mode 100644 index 000000000..5ae50a1e9 --- /dev/null +++ b/apps/sim/app/(landing)/building/layout.tsx @@ -0,0 +1,14 @@ +import { Footer, Nav } from '@/app/(landing)/components' + +/** + * Layout for the building/blog section with navigation and footer + */ +export default function BuildingLayout({ children }: { children: React.ReactNode }) { + return ( + <> +