Skip to content

Commit

Permalink
feat: update payment policy page data
Browse files Browse the repository at this point in the history
  • Loading branch information
swaindhruti committed Oct 25, 2024
1 parent 8ea7ef7 commit c5d45b0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
14 changes: 13 additions & 1 deletion src/app/refundPolicy/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
9 changes: 7 additions & 2 deletions src/config/content/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.',
},
];

Expand Down

0 comments on commit c5d45b0

Please sign in to comment.