2025-05-06 06:45:49 +00:00
|
|
|
import { useLocalization } from '@/utils/hooks/useLocalization'
|
|
|
|
|
import { Helmet } from 'react-helmet'
|
2025-10-18 20:04:24 +00:00
|
|
|
import SocialWall from '@/components/intranet/SocialWall'
|
2025-05-06 06:45:49 +00:00
|
|
|
|
2025-08-11 06:34:44 +00:00
|
|
|
const Dashboard = () => {
|
2025-05-06 06:45:49 +00:00
|
|
|
const { translate } = useLocalization()
|
|
|
|
|
|
|
|
|
|
return (
|
2025-10-18 20:04:24 +00:00
|
|
|
<>
|
|
|
|
|
<Helmet
|
|
|
|
|
titleTemplate="%s | Sözsoft Kurs Platform"
|
|
|
|
|
title={translate('::' + 'Dashboard')}
|
|
|
|
|
defaultTitle="Sözsoft Kurs Platform"
|
|
|
|
|
/>
|
|
|
|
|
<div className="min-h-screen bg-gray-50 dark:bg-gray-900">
|
|
|
|
|
<SocialWall />
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
2025-05-06 06:45:49 +00:00
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-11 06:34:44 +00:00
|
|
|
export default Dashboard
|