/**
 * Internal dependencies.
 */
import { Header, Footer, Content } from '../parts';
import {Cog6ToothIcon, ChartBarIcon, TrashIcon, ArrowPathIcon} from "@heroicons/react/20/solid";

export default function Layout({ children }) {
    const navigation = [
        { name: 'Dashboard', href: '/dashboard' },
        { name: 'Site Analyzer', href: '/site-analyzer' },
        { name: 'Plugins & Themes Cleaner', href: '/plugins-themes-cleaner' },
        { name: 'Broken Links Redirector', href: '/broken-links-redirector' },
        { name: 'File Tweaker', href: '/file-tweaker' },
    ]

    const secondaryNav = [
        // Settings removed from secondary navigation
    ]

    return (
        <>
            <div className="min-h-full">
                <Header navigation={navigation} secondaryNav={secondaryNav}/>
                <Content>{children}</Content>
                <Footer />
            </div>
        </>
    )
}