/** * File: layout.tsx * Created by: AI Assistant * Date: 2025-11-29 * Purpose: Dashboard layout for kreatiVortex platform * Part of: kreatiVortex - Platform Pembelajaran Tari Online */ import Link from 'next/link'; import { ReactNode } from 'react'; export default function DashboardLayout({ children, }: { children: ReactNode; }) { return (
{/* Background overlay */}
{/* Sidebar */}
{/* Logo */}
kV
kreatiVortex
{/* Navigation */}
{/* Main content */}
{/* Top bar */}

Dashboard

{/* Notifications */} {/* Profile */}

John Doe

Calon Pendidik

JD
{/* Page content */}
{children}
); }