// src/components/layout/AppShell.tsx 'use client'; import React from 'react'; import { AppBar, Box, Toolbar } from '@mui/material'; import Navbar from './Navbar'; const AppShell = ({ children }: { children: React.ReactNode }) => { return ( {children} {/* This replaces */} ); };