Skip to content
Open
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
5 changes: 5 additions & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export default function Footer() {
{/* Right Section */}
<div className="md:col-span-4 space-y-10 md:justify-self-end w-full md:w-auto">
{/* Newsletter */}

<div className="space-y-3">
<h3 className="text-[11px] font-bold uppercase tracking-[0.2em] opacity-60">
Updates
Expand Down Expand Up @@ -122,12 +123,14 @@ export default function Footer() {
</div>

{/* Community */}

<div className="space-y-3">
<h3 className="text-[11px] font-bold uppercase tracking-[0.2em] opacity-60">
Community
</h3>

<div className="flex items-center gap-3 flex-wrap">

{[
{
href: "https://github.com/magic-peach/reframe",
Expand All @@ -150,6 +153,7 @@ export default function Footer() {
label: "LinkedIn",
},
].map((social) => (

<a
key={social.label}
href={social.href}
Expand All @@ -160,6 +164,7 @@ export default function Footer() {
>
<span className="opacity-70 group-hover:opacity-100">
{social.icon}

</span>
</a>
))}
Expand Down
Loading