'use client'; import { ReactNode } from "react"; import { Activity } from "lucide-react"; import Link from "next/link"; export function AppShell({ children }: { children: ReactNode }) { return (
{/* Cyber Grid Background */}
{/* Deep gradient glow */}
{/* Top Navigation */}
HYDROSENSE
UPLINK SECURE
{/* Main Content Area */}
{children}
); }