From 8ad2533058af757c9fd4ab3a692d0c59c1bf61e9 Mon Sep 17 00:00:00 2001 From: swve Date: Thu, 18 Jan 2024 11:34:16 +0100 Subject: [PATCH] feat: improve dashboard home page --- apps/web/app/orgs/[orgslug]/dash/page.tsx | 39 +++++++++++++++++++++-- 1 file changed, 36 insertions(+), 3 deletions(-) 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
+
) }