updated components common header layouts

This commit is contained in:
2025-05-03 13:51:02 +03:00
parent 1ce28ec5f0
commit 71c808a5c3
33 changed files with 769 additions and 809 deletions

View File

@@ -0,0 +1,7 @@
import { ReactNode } from "react";
export interface DashboardLayoutProps {
children: ReactNode;
lang: "en" | "tr";
activePage: string;
}