Skip to content

Commit 9965d0d

Browse files
author
aleksandrsokolov
committed
corrections
1 parent e128613 commit 9965d0d

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

public/downloads/DCCN2025_FEES.pdf

162 KB
Binary file not shown.

src/components/Fees.jsx

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,35 @@
11
import React from "react";
2+
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
3+
import {faFilePdf} from "@fortawesome/free-regular-svg-icons";
24

35
const Fees = ({ fees, className = "" }) => {
46
return (
57
<div className={className}>
68
<p className="md:leading-7 md:text-xl text-gray-700">
7-
At least one author per accepted paper must pay the registration fee and present the paper in the conference session where the paper is scheduled. Please note, that once the registration payment is done, <span className="text-red-800 font-bold">no refund is available</span>.
9+
At least one author per accepted paper must pay the registration fee and present the paper in the conference
10+
session where the paper is scheduled. Please note, that once the registration payment is done, <span
11+
className="text-red-800 font-bold">no refund is available</span>.
812
{/*Please note, that once the registration payment is done, <span className="text-red-800 font-bold">no refund is available</span>.*/}
913
</p>
14+
15+
<div className="mt-8">
16+
<a href="/downloads/DCCN2025_FEES.pdf"
17+
target="_blank"
18+
className="text-blue-500 hover:underline text-lg"
19+
>
20+
<FontAwesomeIcon icon={faFilePdf} size="lg" className="mr-3"/>
21+
DCCN2025_FEES.PDF
22+
</a>
23+
</div>
24+
1025
<p className="md:leading-7 md:text-xl text-gray-700 mt-8">
11-
Registration fees are waived for invited keynote speakers and for invited reviewers. The reviewers undertake to carefully and professionally evaluate at least 5 submitted manuscripts in an objective and impartial manner.
26+
Registration fees are waived for invited keynote speakers and for invited reviewers. The reviewers undertake to
27+
carefully and professionally evaluate at least 5 submitted manuscripts in an objective and impartial manner.
1228
</p>
1329
<p className="md:leading-7 md:text-xl text-gray-700 mt-8">
1430
Registration fees below include VAT tax 20%.
1531
</p>
16-
<FeesTable fees={fees} className="my-12" />
32+
<FeesTable fees={fees} className="my-12"/>
1733
{/*<h3 className="h3 mt-12">Payment information</h3>*/}
1834
{/*<p className="md:leading-7 md:text-xl text-gray-700 mt-8">*/}
1935
{/* To pay the registration fee (online), please follow the <a href="https://portal.pfur.ru:4443/Free/OfferPayEn.aspx?num=3224231001446" target="_blank" className="text-blue-500 hover:underline">link</a>.*/}
@@ -28,7 +44,7 @@ const Fees = ({ fees, className = "" }) => {
2844
)
2945
};
3046

31-
export const FeesTable = ({ fees, className = "" }) => {
47+
export const FeesTable = ({fees, className = ""}) => {
3248
// First we need to order prices by IEEE membership:
3349
for (const record of fees) {
3450
record.prices.sort((a, b) => (!a.ieeeMember && b.ieeeMember) ? -1 : (!!a.ieeeMember === !!b.ieeeMember) ? 0 : 1);

src/components/PaymentDetails.jsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ const PaymentDetails = ({ className }) => {
77
<p className="md:leading-7 md:text-xl text-gray-700 my-4">
88
Payment is possible only in Russian rubles by wire transfer or in cash onsite. For international participants
99
and payment in euro, please contact the Organizing Committee email: <a href="mailto:org@dccn.ru"
10-
className="text-blue-600 hover:underline">org@dccn.ru</a> and <a
11-
href="mailto:nata_cot@mail.ru" className="text-blue-600 hover:underline">nata_cot@mail.ru</a>
10+
className="text-blue-600 hover:underline">org@dccn.ru</a> and <a href="mailto:nata_cot@mail.ru" className="text-blue-600 hover:underline">nata_cot@mail.ru</a>
1211
</p>
1312

1413
<p className="md:leading-7 md:text-xl text-gray-700 my-4">
@@ -61,7 +60,7 @@ const PaymentDetails = ({ className }) => {
6160
</tbody>
6261
</table>
6362

64-
<p className="mt-4">Главный бухгалтер: Котельникова Наталья Николаевна, Тел.: 8-985-293-97-07, Почтовый адрес:
63+
<p className="mt-4">Главный бухгалтер: Котельникова Наталья Николаевна, <a href="mailto:nata_cot@mail.ru" className="text-blue-600 hover:underline">nata_cot@mail.ru</a>, Почтовый адрес:
6564
117525, г. Москва, Сумской проезд, д. 31, корп. 2, кв. 80
6665
</p>
6766
</div>

0 commit comments

Comments
 (0)