Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/modules/home/(sections)/sponsors/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import Link from "next/link";
import { useTranslations } from "next-intl";

import AnimatedSection from "@/components/custom/animated-section";
Expand All @@ -22,9 +23,13 @@ const SponsorsSection = () => {
</p>
</div>

{/* Sample Sponsor Card (styled like other feature cards) */}
<div className="mt-12 grid justify-center">
<div className="group max-w-3xl rounded-xl border border-white/5 bg-white/5 p-6 backdrop-blur-sm transition-all duration-300 hover:-translate-y-1 hover:border-white/10 hover:bg-white/10">
<Link
href="https://tally.so/r/w8vGOz"
target="_blank"
rel="noopener noreferrer"
className="group block max-w-3xl rounded-xl border border-white/5 bg-white/5 p-6 backdrop-blur-sm transition-all duration-300 hover:-translate-y-1 hover:border-sky-500/50 hover:from-sky-500/15 hover:to-purple-500/15"
>
<div className="flex items-center gap-3">
<div className="rounded-lg bg-gradient-to-br from-blue-500/20 to-sky-400/20 p-2">
<svg
Expand All @@ -48,7 +53,7 @@ const SponsorsSection = () => {
<p className="mt-3 text-sm leading-relaxed font-light text-slate-300 sm:text-base">
{t("sample.description")}
</p>
</div>
</Link>
</div>
</div>
</AnimatedSection>
Expand Down