From 27f1f0302d55e33a1fae26118b8fb2c72d4ed9b3 Mon Sep 17 00:00:00 2001 From: Jayesh Nayak Date: Sat, 14 Oct 2023 15:42:44 +0530 Subject: [PATCH 1/6] fix: styling issues and updated content in footer and about section --- .env.sample | 3 ++- config/content/AboutUs.js | 3 +-- config/content/EventPage.js | 24 ++++++++++++++++------- config/content/Footer.js | 14 +++++++------ src/components/Ticker/styles.jsx | 4 ++-- src/components/marginals/Footer/styles.js | 3 ++- src/pages/events.js | 4 ++-- src/utils/useEvents.js | 3 ++- 8 files changed, 36 insertions(+), 22 deletions(-) diff --git a/.env.sample b/.env.sample index 4fd828c..cb24227 100644 --- a/.env.sample +++ b/.env.sample @@ -5,4 +5,5 @@ GATSBY_FIREBASE_STORAGE_BUCKET=SOME_STORAGE_BUCKET GATSBY_FIREBASE_MESSAGING_SENDER_ID=SOME_MESSAGING_SENDER_ID GATSBY_FIREBASE_APP_ID=SOME_APP_ID GATSBY_FIREBASE_MEASUREMENT_ID=SOME_MEASUREMENT_ID -GATSBY_API_URL=https://avenue-api.nitrkl.in/ \ No newline at end of file +GATSBY_API_URL=https://avenue-api.nitrkl.in/ +GATSBY_AVENUE_API_URL=https://avenue-api.nitrkl.in diff --git a/config/content/AboutUs.js b/config/content/AboutUs.js index 96e335b..0fe4ab1 100644 --- a/config/content/AboutUs.js +++ b/config/content/AboutUs.js @@ -1,7 +1,6 @@ /* eslint-disable max-len */ export default { title: 'Innovision 2k23', - desc: `Innovision is one of the biggest technical fests in Eastern India. You can delve deeply into science and technology at this event. It is entirely run by the NIT Rourkela student body and provides a huge platform for many different activities, organized in the form of competitive events, guest lectures, technical workshops, and exhibitions. Technology enthusiasts can use it as a platform to show off their intelligence and ingenuity. - `, + desc: `Innovision stands as one of Eastern India's most prominent technical festivals. It offers an immersive exploration of science and technology, embodying key themes in innovation and advancement. Innovision, entirely driven by the NIT Rourkela student body, provides an expansive platform encompassing competitive events, illuminating guest lectures, hands-on technical workshops, and captivating exhibitions. This dynamic fest beckons technology enthusiasts to display their intelligence and ingenuity. As a collective, these elements contribute to the cultivation of advanced technologies that continually evolve, learn, and interact with their surroundings in ever more sophisticated ways.`, link: 'https://www.youtube.com/embed/DrIwRpGM35I', }; diff --git a/config/content/EventPage.js b/config/content/EventPage.js index 6f4270a..cad46c5 100644 --- a/config/content/EventPage.js +++ b/config/content/EventPage.js @@ -2,36 +2,46 @@ export default [ { title: 'Technical', type: 'Technical', - image: 'https://placehold.co/80', + image: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697275459/Tech_Event_wr6lho.jpg', }, { title: 'Pro Shows', type: 'Pro', - image: 'https://placehold.co/80', + image: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697275441/Pro_Sho_t0vsrz.png', }, { title: 'Workshops', type: 'Workshop', - image: 'https://placehold.co/80', + image: + 'https://res.cloudinary.com/dme9vltjf/image/upload' + + '/v1697275448/lexscope-0k2mMcdTOYU-unsplash_qhr9gq.jpg', }, { title: 'Guest Lectures', type: 'Guest-Lectures', - image: 'https://placehold.co/80', + image: + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697275443/miguel-henriques-RfiBK6Y_upQ-unsplash_hrzqmf.jpg', }, { title: 'Exhibitions', type: 'Exhibitions', - image: 'https://placehold.co/80', + image: + 'https://res.cloudinary.com/dme9vltjf/image/' + + 'upload/v1697275444/sergio-rota-lq-3u9EqNb4-unsplash_u8p2q8.jpg', }, { title: 'Fun Events', type: 'Fun', - image: 'https://placehold.co/80', + image: + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697275446/jonny-gios-8wKTIZ1KEzY-unsplash_asltvy.jpg', }, { title: 'Others', type: 'Other', - image: 'https://placehold.co/80', + image: + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697276377/samantha-gades-fIHozNWfcvs-unsplash_bi17wn.jpg', }, ]; diff --git a/config/content/Footer.js b/config/content/Footer.js index 6104a6d..f4b311c 100644 --- a/config/content/Footer.js +++ b/config/content/Footer.js @@ -12,7 +12,9 @@ export default { { id: 1, name: 'Privacy Policy', - link: '/privacy', + link: + 'https://res.cloudinary.com/dme9vltjf/raw/upload' + + '/v1697275542/INNOVISION_2K23_Policy_vwc8ct.docx', }, { id: 2, @@ -40,17 +42,17 @@ export default { }, { id: 2, - infoTitle: 'Opening Hours', + infoTitle: 'Contact Us', list: [ { idx: 1, - infoName: 'Weekdays', - info: 'Timings', + infoName: 'Snehasish', + info: '+91 98277 02030', }, { idx: 2, - infoName: 'Saturday, Sunday', - info: 'Timings', + infoName: 'Medha', + info: '+91 97051 66433', }, ], }, diff --git a/src/components/Ticker/styles.jsx b/src/components/Ticker/styles.jsx index 0015685..a7abe3d 100644 --- a/src/components/Ticker/styles.jsx +++ b/src/components/Ticker/styles.jsx @@ -52,9 +52,9 @@ export const TickerMover = styled.div` inline-block whitespace-nowrap `} - animation: ${({ reverse }) => (reverse ? reverseTicker : ticker)} 160s linear infinite; + animation: ${({ reverse }) => (reverse ? reverseTicker : ticker)} 260s linear infinite; @media (max-width: 720px) { - animation: ${({ reverse }) => (reverse ? reverseTicker : ticker)} 110s linear infinite; + animation: ${({ reverse }) => (reverse ? reverseTicker : ticker)} 200s linear infinite; } `; diff --git a/src/components/marginals/Footer/styles.js b/src/components/marginals/Footer/styles.js index 5f1c2c8..f75cdd0 100644 --- a/src/components/marginals/Footer/styles.js +++ b/src/components/marginals/Footer/styles.js @@ -6,13 +6,14 @@ export const InformationContainer = styled.div` flex flex-col gap-[15px] - w-[208px] + max-w-[228px] overflow-hidden `} @media (max-width: 890px) { gap: 16px; width: 264px; + max-width: 290px; margin: 0 auto; } `; diff --git a/src/pages/events.js b/src/pages/events.js index 5c7bb48..ef4f536 100644 --- a/src/pages/events.js +++ b/src/pages/events.js @@ -9,7 +9,7 @@ import { _eventPage } from '../../config/content'; import { Heading4 } from '../components/shared'; const TypeSelectWrapper = styled.div` - ${tw` flex space-x-4 pb-14 overflow-x-clip w-11/12 mx-auto`} + ${tw` flex space-x-4 pt-6 pb-8 overflow-x-clip w-11/12 mx-auto`} overflow-x: auto; /* Scrollbar Styling */ @@ -79,7 +79,7 @@ const EventPage = () => { {_eventPage.map(({ type: _type, image, title }) => ( handleTypeChange(_type)} key={_type} active={_type === type}> - {_type} + {_type} {title} diff --git a/src/utils/useEvents.js b/src/utils/useEvents.js index b2a2f4a..8800723 100644 --- a/src/utils/useEvents.js +++ b/src/utils/useEvents.js @@ -12,7 +12,8 @@ const useEvents = (eventName) => { const events = useMemo( () => - data?.data?.filter((event) => event?.status === 'ACTIVE') + data?.data + ?.filter((event) => event?.status === 'ACTIVE') ?.map((event) => { const description = JSON.parse(event.description); const date = new Date(event.startDate); From 31a8a9ac1aae791d6718f7ef7b4060711d78dc61 Mon Sep 17 00:00:00 2001 From: Jayesh Nayak Date: Sun, 15 Oct 2023 15:27:55 +0530 Subject: [PATCH 2/6] fix: update content of sponsor section and add policies --- config/content/FAQ.js | 50 +++++++++------ config/content/Footer.js | 22 ++++--- config/content/sponsors.js | 62 ++++++++++++------- .../SponsorSection/SponsorSection.jsx | 2 +- src/components/SponsorSection/styles.js | 7 +-- src/components/marginals/Footer/Footer.jsx | 4 +- src/components/marginals/Footer/styles.js | 2 +- 7 files changed, 92 insertions(+), 57 deletions(-) diff --git a/config/content/FAQ.js b/config/content/FAQ.js index d3b0ea9..e3e03e0 100644 --- a/config/content/FAQ.js +++ b/config/content/FAQ.js @@ -1,52 +1,64 @@ export const FAQS = [ { id: 1, - question: 'When would Innovision happen?', + question: 'What is INNOVISION? ', answer: - 'INNOVISION is the largest ' + - 'techno-management fest of Eastern India lorem ipsum dolor ' + - 'ipsum dolor somethin lorem ipsum dolor somethin lorem ipsum dolor somethin', + 'Innovision is one of the biggest techno ' + + 'management fest organised by students of NITR, ' + + 'with participation from all over India. ', }, { id: 2, - question: 'What is INNOVISION?', - answer: 'INNOVISION is the largest techno-management fest of Eastern India', + question: 'Who can participate? ', + answer: + 'All science and technology enthusiasts currently ' + + 'studying in college are invited to participate. ', }, { id: 3, - question: 'What is INNOVISION?', - answer: 'INNOVISION is the largest techno-management fest of Eastern India', + question: 'How to participate?', + answer: 'You can acquire all the information you need by registering on the website for this.', }, { id: 4, - question: 'What is INNOVISION?', - answer: 'INNOVISION is the largest techno-management fest of Eastern India', + question: 'Cost of registration? ', + answer: 'The cost of registration, including accommodation is Rs. 1000. ', }, { id: 5, - question: 'What is INNOVISION?', - answer: 'INNOVISION is the largest techno-management fest of Eastern India', + question: 'Will there be any proshows?', + answer: + 'All the attendees will ' + + 'have the opportunity to enjoy a lifetime of experiences, including DJ Night, stand-up ' + + 'comedy shows, and more, creating lasting memories.', }, { id: 6, - question: 'What is INNOVISION?', - answer: 'INNOVISION is the largest techno-management fest of Eastern India', + question: 'Will I have to pay anything extra for the events?', + answer: 'Most of the events are free of cost apart from few fun events and workshops.', }, { id: 7, - question: 'What is INNOVISION?', - answer: 'INNOVISION is the largest techno-management fest of Eastern India', + question: 'Starting from which date will accommodation be provided?', + answer: + 'Accommodation will strictly be provided ' + + 'from 3rd November 2023 to 5th November 2023. Please note that accommodation will ' + + 'not be provided on 2nd November 2023 or 6th November 2023.', }, { id: 8, - question: 'What is INNOVISION?', - answer: 'INNOVISION is the largest techno-management fest of Eastern India', + question: 'Will I have to pay anything extra for accommodation?', + answer: + "No, you don't have to pay anything " + + 'extra for accommodation. The registration fees ' + + 'includes 3-day accommodation. Please note that meals will not be provided by us. ' + + 'However, you can buy your meals at eateries and restaurants.', }, ]; export const FAQContent = Object.freeze({ title: 'Frequently Asked Questions', footer: 'Still have questions? Feel free to contact us', - footerLink: 'contact-us', + footerLink: 'mailto:reachus.inno@gmail.com', id: 'faq', }); diff --git a/config/content/Footer.js b/config/content/Footer.js index f4b311c..09dd973 100644 --- a/config/content/Footer.js +++ b/config/content/Footer.js @@ -12,14 +12,22 @@ export default { { id: 1, name: 'Privacy Policy', - link: - 'https://res.cloudinary.com/dme9vltjf/raw/upload' + - '/v1697275542/INNOVISION_2K23_Policy_vwc8ct.docx', + link: 'https://drive.google.com/file/d/1mQqqUzHdR-56cmrKLMCANlrrT22FVkgk/view', }, { id: 2, - name: 'Team', - link: '/', + name: 'Code of Conduct', + link: 'https://drive.google.com/file/d/1Nr38t6s37FQQ5edU8biloQdl3EsdGns-/view', + }, + { + id: 3, + name: 'Terms and Conditions', + link: 'https://drive.google.com/file/d/1bg9NMoJV80vdaoNRTpQIKVt-QGQtkpy5/view', + }, + { + id: 4, + name: 'Refund Policy', + link: 'https://drive.google.com/file/d/1cLnuEBtt7yFfC1dQeFVOP0Oxf_hsCTzb/view', }, ], }, @@ -31,12 +39,12 @@ export default { { idx: 1, infoName: 'Weekdays', - info: 'Timings', + info: '9:00AM - 10:00PM', }, { idx: 2, infoName: 'Saturday, Sunday', - info: 'Timings', + info: '9:00AM - 10:00PM', }, ], }, diff --git a/config/content/sponsors.js b/config/content/sponsors.js index d857e30..3eb937b 100644 --- a/config/content/sponsors.js +++ b/config/content/sponsors.js @@ -1,14 +1,18 @@ export default { - title: 'Sponsors', - footer: 'Want to sponsor us? Email us at dummy@gmail.com', - link: 'mailto:dummy@gmail.com', + title: 'Past Sponsors', + footer: 'Want to sponsor us?', + link: + 'https://docs.google.com/forms/d/e/' + + '1FAIpQLSfV6ZclXiO7K5vVWFjR6_ZtqjrQ1HpTQ4-Lk9WAu4VA9PuI_g/viewform?usp=sharing', id: 'sponsors', titleSponsor: [ { id: 1, - logo: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1695818710/inno_logo_gjqvic.svg', - alt: 'INNO TTILE', + logo: + 'https://res.cloudinary.com/dsg5j3qx6/image/' + + 'upload/v1697350325/Innovision%202023/Sponsors/Adobe.png', + alt: 'INNO TITLE', link: 'inno.nitrkl.in', color: '#FFB8FF', }, @@ -17,49 +21,61 @@ export default { sponsors: [ { id: 1, - logo: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1695818710/inno_logo_gjqvic.svg', - alt: 'TBA', - type: 'Associate Sponsor', + logo: + 'https://res.cloudinary.com/dsg5j3qx6/image/upload' + + '/v1697350330/Innovision%202023/Sponsors/Huddang.jpg', + alt: 'Huddang', + type: 'Fooding Partner', link: 'inno.nitrkl.in', color: '#5CFFA7', }, { id: 2, - logo: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1695818710/inno_logo_gjqvic.svg', - alt: 'TBA', - type: 'Media Sponsor', + logo: + 'https://res.cloudinary.com/dsg5j3qx6/image/upload/' + + 'v1697350340/Innovision%202023/Sponsors/Sambad.jpg', + alt: 'Sambad', + type: 'Media Partner', link: 'inno.nitrkl.in', color: '#E85CFF', }, { id: 3, - logo: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1695818710/inno_logo_gjqvic.svg', - alt: 'TBA', - type: 'Refreshments Sponsor', + logo: + 'https://res.cloudinary.com/dsg5j3qx6/image/' + + 'upload/v1697350334/Innovision%202023/Sponsors/RKL%20SHINES.jpg', + alt: 'Rourkela Shines', + type: 'Media Partner', link: 'inno.nitrkl.in', color: '#5C9DFF', }, { id: 4, - logo: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1695818710/inno_logo_gjqvic.svg', - alt: 'TBA', - type: 'Associate Sponsor', + logo: + 'https://res.cloudinary.com/dsg5j3qx6/image/' + + 'upload/v1697350322/Innovision%202023/Sponsors/Flavour%20Box.png', + alt: 'Flavour Box', + type: 'Sponsor', link: 'inno.nitrkl.in', color: '#5CFFA7', }, { id: 5, - logo: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1695818710/inno_logo_gjqvic.svg', - alt: 'TBA', - type: 'Media Sponsor', + logo: + 'https://res.cloudinary.com/dsg5j3qx6/image/upload/' + + 'v1697350329/Innovision%202023/Sponsors/Clavimate.jpg', + alt: 'Clavimate', + type: 'Sponsor', link: 'inno.nitrkl.in', color: '#E85CFF', }, { id: 6, - logo: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1695818710/inno_logo_gjqvic.svg', - alt: 'TBA', - type: 'Refreshments Sponsor', + logo: + 'https://res.cloudinary.com/dsg5j3qx6/image/' + + 'upload/v1697350328/Innovision%202023/Sponsors/Unacademy.jpg', + alt: 'Unacademy', + type: 'Sponsor', link: 'inno.nitrkl.in', color: '#5C9DFF', }, diff --git a/src/components/SponsorSection/SponsorSection.jsx b/src/components/SponsorSection/SponsorSection.jsx index 9b52b70..2840dc8 100644 --- a/src/components/SponsorSection/SponsorSection.jsx +++ b/src/components/SponsorSection/SponsorSection.jsx @@ -29,7 +29,7 @@ const SponsorSection = () => ( {sponsors.map(({ id, logo, alt, link, type, color }) => ( - + {type} diff --git a/src/components/SponsorSection/styles.js b/src/components/SponsorSection/styles.js index 73b170b..5e06e09 100644 --- a/src/components/SponsorSection/styles.js +++ b/src/components/SponsorSection/styles.js @@ -21,13 +21,11 @@ export const TitleSponsorContainer = styled.div` ${tw` flex flex-col - gap-[32px] text-center w-[320px] `} @media (max-width: 1100px) { width: 240px; - gap: 16px; } `; @@ -77,7 +75,7 @@ export const SponsorContainer = styled.div` ${tw` flex flex-col - gap-[32px] + gap-[20px] text-center w-[320px] col-span-1 @@ -99,7 +97,6 @@ export const SponsorContainer = styled.div` export const SponsorLogo = styled.img` ${tw` - w-full - my-auto + h-full `} `; diff --git a/src/components/marginals/Footer/Footer.jsx b/src/components/marginals/Footer/Footer.jsx index 15b0445..95dd3a8 100644 --- a/src/components/marginals/Footer/Footer.jsx +++ b/src/components/marginals/Footer/Footer.jsx @@ -39,7 +39,9 @@ const Footer = () => ( {quicklinks.list.map(({ id, name, link }) => ( - {name} + + {name} + ))} diff --git a/src/components/marginals/Footer/styles.js b/src/components/marginals/Footer/styles.js index f75cdd0..a34bcbe 100644 --- a/src/components/marginals/Footer/styles.js +++ b/src/components/marginals/Footer/styles.js @@ -6,7 +6,7 @@ export const InformationContainer = styled.div` flex flex-col gap-[15px] - max-w-[228px] + max-w-[308px] overflow-hidden `} From 15d8468d8b65dc88e8ef0ced933f6890631f9dd4 Mon Sep 17 00:00:00 2001 From: Ashish Padhy <100484401+Shurtu-gal@users.noreply.github.com> Date: Sun, 15 Oct 2023 16:04:55 +0530 Subject: [PATCH 3/6] chore: add links to payment --- config/content/payment.js | 8 ++++---- src/components/Payment/PaymentCard.jsx | 2 +- src/components/shared/About.jsx | 7 ++++++- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/config/content/payment.js b/config/content/payment.js index c3a99ef..3b630d5 100644 --- a/config/content/payment.js +++ b/config/content/payment.js @@ -25,25 +25,25 @@ export const PaymentContent = { id: 'privacy', term: 'I have read and agree to the ', linkText: 'Privacy Policy', - link: 'https://www.google.com', + link: 'https://drive.google.com/file/d/1mQqqUzHdR-56cmrKLMCANlrrT22FVkgk/view', }, { id: 'code', term: 'I have read and agree to the ', linkText: 'Code of Conduct', - link: 'https://www.google.com', + link: 'https://drive.google.com/file/d/1Nr38t6s37FQQ5edU8biloQdl3EsdGns-/view', }, { id: 'refund', term: 'I have read and agree to the ', linkText: 'Refund Policy', - link: 'https://www.google.com', + link: 'https://drive.google.com/file/d/1bg9NMoJV80vdaoNRTpQIKVt-QGQtkpy5/view', }, { id: 'terms', term: 'I have read and agree to the ', linkText: 'Terms and Conditions', - link: 'https://www.google.com', + link: 'https://drive.google.com/file/d/1cLnuEBtt7yFfC1dQeFVOP0Oxf_hsCTzb/view', }, ], }; diff --git a/src/components/Payment/PaymentCard.jsx b/src/components/Payment/PaymentCard.jsx index 414392c..90a0eb5 100644 --- a/src/components/Payment/PaymentCard.jsx +++ b/src/components/Payment/PaymentCard.jsx @@ -93,7 +93,7 @@ const PaymentCard = () => { WebkitTextFillColor: 'transparent', }} > - ₹750 + ₹899 diff --git a/src/components/shared/About.jsx b/src/components/shared/About.jsx index 959f0cf..2f83bc0 100644 --- a/src/components/shared/About.jsx +++ b/src/components/shared/About.jsx @@ -67,7 +67,12 @@ const MobileHeading = styled(Heading2)` `; const About = ({ title, desc, image, link, alt }) => ( - + From fba5ccb7a43c7195e7d6d9bcf408e30feba8daa1 Mon Sep 17 00:00:00 2001 From: Jayesh Nayak Date: Sun, 15 Oct 2023 17:26:39 +0530 Subject: [PATCH 4/6] fix: updated compressed images --- config/content/EventPage.js | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/config/content/EventPage.js b/config/content/EventPage.js index cad46c5..0ea4a32 100644 --- a/config/content/EventPage.js +++ b/config/content/EventPage.js @@ -2,46 +2,50 @@ export default [ { title: 'Technical', type: 'Technical', - image: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697275459/Tech_Event_wr6lho.jpg', + image: + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697370432/Inno%202k23/david-leveque-GpNOhig3LSU-unsplash_11zon_y5ajhn.jpg', }, { title: 'Pro Shows', type: 'Pro', - image: 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697275441/Pro_Sho_t0vsrz.png', + image: + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697370431/Inno%202k23/Pro_Sho_11zon_bowwb3.jpg', }, { title: 'Workshops', type: 'Workshop', image: - 'https://res.cloudinary.com/dme9vltjf/image/upload' + - '/v1697275448/lexscope-0k2mMcdTOYU-unsplash_qhr9gq.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370432/' + + 'Inno%202k23/lexscope-0k2mMcdTOYU-unsplash_11zon_zemsvp.jpg', }, { title: 'Guest Lectures', type: 'Guest-Lectures', image: - 'https://res.cloudinary.com/dme9vltjf/image/upload/' + - 'v1697275443/miguel-henriques-RfiBK6Y_upQ-unsplash_hrzqmf.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370431/' + + 'Inno%202k23/miguel-henriques-RfiBK6Y_upQ-unsplash_11zon_a1nvuc.jpg', }, { title: 'Exhibitions', type: 'Exhibitions', image: - 'https://res.cloudinary.com/dme9vltjf/image/' + - 'upload/v1697275444/sergio-rota-lq-3u9EqNb4-unsplash_u8p2q8.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697370431/Inno%202k23/sergio-rota-lq-3u9EqNb4-unsplash_11zon_mpy2wj.jpg', }, { title: 'Fun Events', type: 'Fun', image: - 'https://res.cloudinary.com/dme9vltjf/image/upload/' + - 'v1697275446/jonny-gios-8wKTIZ1KEzY-unsplash_asltvy.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370432/' + + 'Inno%202k23/jonny-gios-8wKTIZ1KEzY-unsplash_11zon_frv6up.jpg', }, { title: 'Others', type: 'Other', image: - 'https://res.cloudinary.com/dme9vltjf/image/upload/' + - 'v1697276377/samantha-gades-fIHozNWfcvs-unsplash_bi17wn.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370957/' + + 'Inno%202k23/samantha-gades-fIHozNWfcvs-unsplash_bi17wn_3_evkqzx.jpg', }, ]; From 54d74c21cdd7517e871b09fb74a3a1c390658267 Mon Sep 17 00:00:00 2001 From: Jayesh Nayak Date: Sun, 15 Oct 2023 18:34:32 +0530 Subject: [PATCH 5/6] fix: text overlap with border in section layout --- src/components/shared/SectionLayout.jsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/components/shared/SectionLayout.jsx b/src/components/shared/SectionLayout.jsx index fedee73..33e29ab 100644 --- a/src/components/shared/SectionLayout.jsx +++ b/src/components/shared/SectionLayout.jsx @@ -22,12 +22,13 @@ export const SectionTitle = styled(Body1)` ${({ accent }) => accent ? ` - background: var(--brand-gradient); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-clip: text; + color: #EABCFF; ` - : ''} + : ''}//background: var(--brand-gradient); + //-webkit-background-clip: text; + // + //background-clip: text; + //-webkit-text-fill-color: transparent; `; export const CustomHGroup = styled.hgroup` @@ -48,12 +49,12 @@ const SectionHeader = ({ title }) => ( const SectionFooter = ({ title, link }) => ( + {title} - ); From ac3dc1a21887982d20497d8e574232d3ca11bb85 Mon Sep 17 00:00:00 2001 From: Jayesh Nayak Date: Mon, 16 Oct 2023 12:38:03 +0530 Subject: [PATCH 6/6] fix: updated nav images --- config/content/EventPage.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/config/content/EventPage.js b/config/content/EventPage.js index 0ea4a32..62483f2 100644 --- a/config/content/EventPage.js +++ b/config/content/EventPage.js @@ -4,48 +4,48 @@ export default [ type: 'Technical', image: 'https://res.cloudinary.com/dme9vltjf/image/upload/' + - 'v1697370432/Inno%202k23/david-leveque-GpNOhig3LSU-unsplash_11zon_y5ajhn.jpg', + 'v1697438367/Instagram_post_-_7_y5szxa.png', }, { title: 'Pro Shows', type: 'Pro', image: 'https://res.cloudinary.com/dme9vltjf/image/upload/' + - 'v1697370431/Inno%202k23/Pro_Sho_11zon_bowwb3.jpg', + 'v1697438367/Instagram_post_-_6_tkvcsd.png', }, { title: 'Workshops', type: 'Workshop', image: - 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370432/' + - 'Inno%202k23/lexscope-0k2mMcdTOYU-unsplash_11zon_zemsvp.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697438367/Instagram_post_-_5_mcibqo.png', }, { title: 'Guest Lectures', type: 'Guest-Lectures', image: - 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370431/' + - 'Inno%202k23/miguel-henriques-RfiBK6Y_upQ-unsplash_11zon_a1nvuc.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697438367/Instagram_post_-_3_z3tlbs.png', }, { title: 'Exhibitions', type: 'Exhibitions', image: 'https://res.cloudinary.com/dme9vltjf/image/upload/' + - 'v1697370431/Inno%202k23/sergio-rota-lq-3u9EqNb4-unsplash_11zon_mpy2wj.jpg', + 'v1697438366/Instagram_post_-_4_zxpros.png', }, { title: 'Fun Events', type: 'Fun', image: - 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370432/' + - 'Inno%202k23/jonny-gios-8wKTIZ1KEzY-unsplash_11zon_frv6up.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697439946/Inno%202k23/Instagram_post_-_8_plf5ek.png', }, { title: 'Others', type: 'Other', image: - 'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370957/' + - 'Inno%202k23/samantha-gades-fIHozNWfcvs-unsplash_bi17wn_3_evkqzx.jpg', + 'https://res.cloudinary.com/dme9vltjf/image/upload/' + + 'v1697439946/Inno%202k23/Instagram_post_-_9_yhwfgk.png', }, ];