-
Notifications
You must be signed in to change notification settings - Fork 2
/
promoPanel.locale.js
29 lines (27 loc) · 1.35 KB
/
promoPanel.locale.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* eslint-disable max-len */
/* eslint-disable no-trailing-spaces */
import React from 'react';
// import { AUTH_URL_LOGIN } from 'config';
// const loginUrl = `${AUTH_URL_LOGIN}?return=${window.btoa(window.location.href)}`;
export const promoPanel = {
loggedout: {
title: 'Summer Semester',
content: (
<div>
<p>The Library is open during Summer Semester.</p>
<p>Enjoy a range of comfortable study spaces. Access 24/7 spaces and collections with your UQ ID card. Check our <a href="https://web.library.uq.edu.au/locations-hours/opening-hours">opening hours</a> for details.</p>
<p><a href="https://web.library.uq.edu.au/contact-us">Contact us</a> or visit an AskUs service point for assistance.</p>
</div>
),
},
loggedin: {
title: 'Summer Semester',
content: (
<div>
<p>The Library is open during Summer Semester.</p>
<p>Enjoy a range of comfortable study spaces. Access 24/7 spaces and collections with your UQ ID card. Check our <a href="https://web.library.uq.edu.au/locations-hours/opening-hours">opening hours</a> for details.</p>
<p><a href="https://web.library.uq.edu.au/contact-us">Contact us</a> or visit an AskUs service point for assistance.</p>
</div>
),
},
};