import React from 'react' import GeneralWrapperStyled from '@components/Objects/StyledElements/Wrappers/GeneralWrapper' import TypeOfContentTitle from '@components/Objects/StyledElements/Titles/TypeOfContentTitle' import CourseThumbnail from '@components/Objects/Thumbnails/CourseThumbnail' import CollectionThumbnail from '@components/Objects/Thumbnails/CollectionThumbnail' import AuthenticatedClientElement from '@components/Security/AuthenticatedClientElement' import NewCourseButton from '@components/Objects/StyledElements/Buttons/NewCourseButton' import NewCollectionButton from '@components/Objects/StyledElements/Buttons/NewCollectionButton' import ContentPlaceHolderIfUserIsNotAdmin from '@components/Objects/ContentPlaceHolder' import Link from 'next/link' import { getUriWithOrg } from '@services/config/config' interface LandingClassicProps { courses: any[] collections: any[] orgslug: string org_id: string } function LandingClassic({ courses, collections, orgslug, org_id }: LandingClassicProps) { return (