Skip to content

Commit

Permalink
added new sponsor
Browse files Browse the repository at this point in the history
  • Loading branch information
SundarakrishnanN committed Aug 16, 2024
1 parent 801f94c commit 6b434ac
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions pages/sponsorship.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,87 @@ const Sponsorship: React.FC = () => {
Sponsors of 2024
</h1>
</div>
<div style={{ display: 'flex', alignItems: 'center' }}>
<h1
style={{
marginRight: '1rem',
background: 'linear-gradient(to right, #ff0000, #800000)',
WebkitBackgroundClip: 'text',
fontSize: '3rem',
fontWeight: 'bold',
color: 'transparent',
alignContent: 'center',
}}
>
Platinum
</h1>
<hr
style={{
background: 'linear-gradient(to right, red, transparent)',
height: '3px',
width: '100%',
marginRight: '1rem',
}}
/>
</div>

<div
style={{
display: 'flex',
justifyContent: 'center',
gap: '2rem',
flexWrap: 'wrap', // For mobile responsiveness
}}
>
<a
href="https://www.atdxt.com/"
target="_blank"
style={{
width: '300px',
padding: '1rem',
borderRadius: '0.5rem',
backgroundColor: 'white',
boxShadow: '0 4px 6px rgba(0, 0, 0, 0.1)',
border: '2.5px solid #ccc',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
height: '200px',
transition: 'transform 0.2s',
}}
onMouseEnter={(e) => {
e.currentTarget.style.transform = 'translateY(-4px)'
}}
onMouseLeave={(e) => {
e.currentTarget.style.transform = 'translateY(0)'
}}
>
<ThemeIcon
variant="light"
size={150}
radius="md"
style={{ background: 'transparent' }}
>
<Image
src={`/sponsors/atdxt.png`}
alt="ATDXT"
style={{ background: 'transparent', maxWidth: '100%' }}
/>
</ThemeIcon>
<Text
size="md"
style={{
marginTop: '0.5rem',
fontWeight: 'bold',
textAlign: 'center',
}}
>
ATDXT
</Text>
</a>

</div>
<div style={{ display: 'flex', alignItems: 'center' }}>
<h1
style={{
Expand Down
Binary file added public/sponsors/atdxt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6b434ac

Please sign in to comment.