mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
feat: add activity page
This commit is contained in:
parent
032f8334ec
commit
85ac324927
6 changed files with 180 additions and 6 deletions
|
|
@ -7,10 +7,9 @@ import learnhouseLogo from "public/learnhouse_logo.png";
|
|||
import Link from "next/link";
|
||||
import Image from "next/image";
|
||||
import { useRouter, useSearchParams } from "next/navigation";
|
||||
import { headers } from 'next/headers';
|
||||
|
||||
export const Menu = ({orgslug } : any) => {
|
||||
import { headers } from "next/headers";
|
||||
|
||||
export const Menu = ({ orgslug }: any) => {
|
||||
return (
|
||||
<GlobalHeader>
|
||||
<LogoArea>
|
||||
|
|
@ -30,12 +29,15 @@ export const Menu = ({orgslug } : any) => {
|
|||
<MenuArea>
|
||||
<ul>
|
||||
<li>
|
||||
<Link href={ "/courses"}>Courses</Link>
|
||||
<Link href={"/courses"}>Courses</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link href={ "/collections"}>Collections</Link>
|
||||
<Link href={"/collections"}>Collections</Link>
|
||||
</li>
|
||||
<li>
|
||||
{" "}
|
||||
<Link href={"/activity"}>Activity</Link>
|
||||
</li>
|
||||
<li>Activity</li>
|
||||
<li>More</li>
|
||||
</ul>
|
||||
</MenuArea>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue