diff --git a/apps/web/app/orgs/[orgslug]/dash/page.tsx b/apps/web/app/orgs/[orgslug]/dash/page.tsx index ae18e474..55af25aa 100644 --- a/apps/web/app/orgs/[orgslug]/dash/page.tsx +++ b/apps/web/app/orgs/[orgslug]/dash/page.tsx @@ -1,11 +1,44 @@ -import PageLoading from '@components/Objects/Loaders/PageLoading' +import Image from 'next/image' import React from 'react' +import learnhousetextlogo from '../../../../public/learnhouse_logo.png' +import learnhouseiconlogo from '../../../../public/learnhouse_bigicon.png' +import { BookCopy, School, Settings } from 'lucide-react' +import Link from 'next/link' function DashboardHome() { return (
- -
This page is work in progress
+
+ learnhouse logo +
+
+ +
+ +
Courses
+

Create and manage courses, chapters and ativities

+
+ + +
+ +
Organization
+

Configure your Organization general settings

+
+ + +
+ +
Personal Settings
+

Configure your personal settings, passwords, email

+
+ +
+
+ + +
Learn LearnHouse
+
) }