"use client"; import { Title } from "@components/UI/Elements/Styles/Title"; import Link from "next/link"; import { usePathname } from "next/navigation"; const OrgHomePage = (params: any) => { const orgslug = params.params.orgslug; const pathname = usePathname(); return (
Welcome {orgslug} 👋🏻
); }; export default OrgHomePage;