Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<div class="flex items-center justify-between py-1 px-6 bg-default dark:bg-background-surface-alt border-b border-border-default">
<div class="flex items-center gap-3">
<div class="flex flex-col gap-0.5 text-primary-default">
<span class="text-sm font-normal" jhiTranslate="landingPage.banner.portalName"></span>
<a href="https://www.cit.tum.de/" target="_blank" rel="noopener noreferrer" class="text-sm font-normal hover:opacity-80">
TUM School of Computation, Information and Technology
</a>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<jhi-banner-section />
@if (!accountService.user()) {
<jhi-banner-section />
}

<jhi-hero-section />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<jhi-banner-section />
@if (!accountService.user()) {
<jhi-banner-section />
}

<jhi-professor-hero-section />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Component } from '@angular/core';
import { Component, inject } from '@angular/core';
import { AccountService } from 'app/core/auth/account.service';

import { BannerSectionComponent } from '../landing-page/banner-section/banner-section.component';

Expand All @@ -22,5 +23,5 @@ import { ProfessorFaqSectionComponent } from './professor-faq-section/professor-
styleUrl: './professor-landing-page.component.scss',
})
export class ProfessorLandingPageComponent {
// This component serves as a container for the professor landing page sections
accountService = inject(AccountService);
}
1 change: 0 additions & 1 deletion src/main/webapp/i18n/de/landingPage.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"subline": "TUMapply ist dein Zugang zur Promotion an der TUM School of Computation, Information and Technology"
},
"banner": {
"portalName": "TUM Apply - Promotion an der TUM",
"universityName": "Technische Universität München"
},
"doctoralJourney": {
Expand Down
1 change: 0 additions & 1 deletion src/main/webapp/i18n/en/landingPage.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"subline": "TUMapply is your gateway to doctoral research at the TUM School of Computation, Information and Technology"
},
"banner": {
"portalName": "TUM Apply - Promotion at TUM",
"universityName": "Technical University of Munich"
},
"doctoralJourney": {
Expand Down
Loading