Add layout to lighthouse config

This commit is contained in:
Chandrapal Badshah
2025-05-16 12:23:21 +05:30
parent 055ecaebec
commit 7385273b43
@@ -0,0 +1,19 @@
import "@/styles/globals.css";
import React from "react";
import { ContentLayout } from "@/components/ui";
interface ChatbotConfigLayoutProps {
children: React.ReactNode;
}
export default function ChatbotConfigLayout({
children,
}: ChatbotConfigLayoutProps) {
return (
<ContentLayout title="Configure Lighthouse" icon="lucide:settings">
{children}
</ContentLayout>
);
}