Skip to content

Commit 16a51ed

Browse files
committed
Change urls from days to 2025-days
1 parent f027c7c commit 16a51ed

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

apps/app/src/pages/LoginPage/LoginPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ export const LoginPage = () => {
6969
<div className={c.wrapper}>
7070
<div className={c.pageName}>
7171
<span className={c.pageTitle}>Prijava</span>
72-
<a href='https://days.dump.hr'>
72+
<a href='https://2025-days.dump.hr'>
7373
<img src={closeIcon} alt='Close login' className={c.closeIcon} />
7474
</a>
7575
</div>
7676
<div className={c.container}>
7777
<div className={c.titleContainer}>
7878
<h1 className={c.title}>Dobro došli!</h1>
79-
<a href='https://days.dump.hr'>
79+
<a href='https://2025-days.dump.hr'>
8080
<img src={closeIcon} alt='Close login' className={c.closeIcon} />
8181
</a>
8282
</div>

apps/web/src/components/FooterSection/FooterSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const FooterSection = () => {
2121
<button
2222
className={clsx(c.button, c.grainyButton)}
2323
onClick={() =>
24-
(window.location.href = 'https://days.dump.hr/app/login')
24+
(window.location.href = 'https://2025-days.dump.hr/app/login')
2525
}>
2626
{`[ `}
2727
REGISTRIRAJ SVOJ DOLAZAK

apps/web/src/components/RegistrationSection/RegistrationSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const RegistrationSection = () => {
1313
<Button
1414
className={c.loginButton}
1515
onClick={() =>
16-
(window.location.href = 'https://days.dump.hr/app/login')
16+
(window.location.href = 'https://2025-days.dump.hr/app/login')
1717
}>
1818
[ prijavi se u aplikaciju ]
1919
</Button>

apps/web/src/pages/LandingPage/LandingPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const LandingPage: React.FC = () => {
2222
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
2323
const RegisterButton = (
2424
<Button
25-
onClick={() => (window.location.href = 'https://days.dump.hr/app/login')}>
25+
onClick={() => (window.location.href = 'https://2025-days.dump.hr/app/login')}>
2626
Prijavi se
2727
</Button>
2828
);

apps/web/src/pages/TemporaryLandingPage/TemporaryLandingPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const TemporaryLandingPage: React.FC = () => {
1212
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
1313
const RegisterButton = (
1414
<Button
15-
onClick={() => (window.location.href = 'https://days.dump.hr/app/login')}>
15+
onClick={() => (window.location.href = 'https://2025-days.dump.hr/app/login')}>
1616
Prijavi se
1717
</Button>
1818
);

0 commit comments

Comments
 (0)