diff --git a/config/content/CA.js b/config/content/CA.js new file mode 100644 index 0000000..7544b69 --- /dev/null +++ b/config/content/CA.js @@ -0,0 +1,32 @@ +export const CADetails = { + title: 'Campus Ambassador Program', + content: [ + { + title: 'Perks', + list: [ + 'Certificate of appreciation', + 'Free merchandise and gift hampers on completion of certain milestones', + 'Free of cost access to webinar and workshop', + 'Publicity in social media handles', + 'Special discount for next fest by NIT Rourkela', + 'Building network and personal connections', + ], + }, + { + title: 'Procedure', + list: [ + 'Register yourself for INNOVISION at inno.nitrkl.in', + 'Go to CA program', + 'Click on Register as CA', + 'Register as CA', + 'Your Mobile Number is your Unique Referral Code', + 'Help your friends register themselves and apply the unique Referral code', + 'Win Goodies and Hampers', + ], + }, + ], + button: { + text: 'Register as CA', + link: 'https://forms.gle/i1tzjmebnmySJsLb9', + }, +}; diff --git a/config/content/Footer.js b/config/content/Footer.js index 09dd973..619fdf7 100644 --- a/config/content/Footer.js +++ b/config/content/Footer.js @@ -29,6 +29,11 @@ export default { name: 'Refund Policy', link: 'https://drive.google.com/file/d/1cLnuEBtt7yFfC1dQeFVOP0Oxf_hsCTzb/view', }, + { + id: 5, + name: 'CA Program', + link: '/campus-ambassador', + }, ], }, information: [ diff --git a/src/components/CAProgram/CAProgram.jsx b/src/components/CAProgram/CAProgram.jsx new file mode 100644 index 0000000..96c960a --- /dev/null +++ b/src/components/CAProgram/CAProgram.jsx @@ -0,0 +1,54 @@ +import React from 'react'; +import { Body1, Heading2, Heading3, SectionLayout } from '../shared'; +import { CADetails } from '../../../config/content/CA'; +import { ButtonContainer, ItemsContainer, PerksContainer } from './styles'; +import Button from '../shared/Button'; + +const CAProgram = () => ( + + + {CADetails.title} + + + {CADetails.content.map((item) => ( +
+ + {item.title} + + + {item.list.map((listItem, index) => ( + + {index + 1}. {listItem} + + ))} + +
+ ))} +
+ +