-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update payment policy page data
- Loading branch information
1 parent
8ea7ef7
commit c5d45b0
Showing
2 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,19 @@ export default function Page() { | |
{PaymentPolicyPageData.map((item) => ( | ||
<div key={item.id}> | ||
<Heading3>{item.title}</Heading3> | ||
<Heading4>{item.description}</Heading4> | ||
<Heading4> | ||
{item.description.split('•').map((part, index) => { | ||
const email = '[email protected]'; | ||
const emailLink = `<a href="mailto:${email}">${email}</a>`; | ||
const modifiedPart = part.replace(email, emailLink); | ||
return ( | ||
<span key={index}> | ||
<span dangerouslySetInnerHTML={{ __html: modifiedPart.trim() }} /> | ||
<br /> | ||
</span> | ||
); | ||
})} | ||
</Heading4> | ||
</div> | ||
))} | ||
<Heading5>{abideByRefundPolicy}</Heading5> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,11 @@ export const PaymentPolicyPageData = [ | |
description: | ||
'At INNOVISION 2024, we are committed to providing an enriching experience for all participants. Please review our refund policy carefully:', | ||
}, | ||
{ | ||
title: 'Pricing', | ||
description: | ||
'The registration fees for Innovision 2024 applies to all students from outside NIT Rourkela. This fee grants access to all events, workshops, and exhibitions during the fest. For students of NIT Rourkela, registration is completely free. Registration covers participation in most events, though some workshops may require additional fees for materials. We encourage all students to register early to secure their spot, as registrations may close once we reach capacity.', | ||
}, | ||
{ | ||
title: 'No Refunds on Registrations and Payments', | ||
description: | ||
|
@@ -172,9 +177,9 @@ export const PaymentPolicyPageData = [ | |
'In the event of unforeseen circumstances such as natural disasters, government restrictions, or other events beyond our control, INNOVISION 2024 organizers will make every effort to reschedule. However, refunds will not be issued under these conditions. Refunds will only be processed if INNOVISION 2024 is officially cancelled by the organizers.', | ||
}, | ||
{ | ||
title: 'Contact Us', | ||
title: 'Contact for Help', | ||
description: | ||
'For any questions regarding our refund policy, please reach out to our support team through the contact information provided on our website.', | ||
'If you have any questions or need assistance with your registration, please feel free to reach out to our support team at [email protected]. We are here to help with any queries related to registration, event details, or technical issues. Our team will respond within 24-48 hours to ensure you have all the information you need to enjoy Innovision 2024 to the fullest.', | ||
}, | ||
]; | ||
|
||
|