// src/components/shared/Layout.tsx import React from 'react'; import Navigation from './Navigation'; const Layout = ({ children }) => { return (
{/* Alert for announcements */}

Welcome to EduAI Platform! Start your learning journey today.

{/* Main content */}
{children}
{/* Footer */}
); }; export default Layout;