import React from 'react' import FooterContent from './footer-content' import { Link } from "@/components/navigation" import Image from 'next/image' import { Icon } from "@/components/ui/icon"; import { auth } from '@/lib/auth' const DashCodeFooter = async () => { const session = await auth() return (
COPYRIGHT © {new Date().getFullYear()} Media Hub, All rights Reserved
10 Messages
{session?.user?.name?.charAt(0)
2 Notifications
) } export default DashCodeFooter