Skip to content

Commit

Permalink
Merge pull request #74 from sesauoa/refactor/sponsors
Browse files Browse the repository at this point in the history
refactor: Added sponsor links and changed to dark assets
  • Loading branch information
AntGa authored Feb 7, 2025
2 parents f186a83 + aceae89 commit 16384f9
Show file tree
Hide file tree
Showing 8 changed files with 489 additions and 3 deletions.
Binary file modified public/logos/sponsors/atlassian.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logos/sponsors/partly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logos/sponsors/potentia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logos/sponsors/sandfield.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logos/sponsors/serato.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/app/(home)/_components/sponsors/SponsorCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ interface SponsorCardProps extends ImageFitProps {

const SponsorCard = ({ color, name, link, ...image }: SponsorCardProps) => {
return (
<Link href={link}>
<Link href={link} target="_blank" rel="noopener noreferrer">
<motion.div
initial="hide"
whileHover="show"
className="relative cursor-pointer overflow-hidden rounded-xl p-4 px-8"
>
<motion.p
variants={textvariants}
className="absolute left-1/2 top-1/2 z-10 -translate-x-1/2 -translate-y-1/2 text-center font-bold drop-shadow-[0px_0px_4px_white]"
className="absolute left-1/2 top-1/2 z-10 -translate-x-1/2 -translate-y-1/2 text-center text-2xl font-bold drop-shadow-[0px_0px_4px_white]"
transition={{ duration: 1, ease: easeOutExpo }}
>
{name}
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function RootLayout({
<div className="relative z-10">
<Navbar />
{children}
<ScrollToTop/>
<ScrollToTop />
<Footer />
</div>
<CursorAnimation />
Expand Down
Loading

0 comments on commit 16384f9

Please sign in to comment.