Skip to content

Commit

Permalink
fix: styling changes (#103)
Browse files Browse the repository at this point in the history
* fix: styling issues and updated content in footer and about section

* fix: update content of sponsor section and add policies

* chore: add links to payment

* fix: updated compressed images

* fix: text overlap with border in section layout

* fix: updated nav images

---------

Co-authored-by: Ashish Padhy <100484401+Shurtu-gal@users.noreply.github.com>
  • Loading branch information
jayeshxn and Shurtu-gal committed Oct 16, 2023
1 parent 1271105 commit fd38b42
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
22 changes: 11 additions & 11 deletions config/content/EventPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
];
13 changes: 7 additions & 6 deletions src/components/shared/SectionLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -48,12 +49,12 @@ const SectionHeader = ({ title }) => (

const SectionFooter = ({ title, link }) => (
<CustomHGroup>
<HorizontalLine />
<Link to={link}>
<SectionTitle accent right>
{title}
</SectionTitle>
</Link>
<HorizontalLine />
</CustomHGroup>
);

Expand Down

0 comments on commit fd38b42

Please sign in to comment.