Skip to content
Merged
Show file tree
Hide file tree
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
21 changes: 3 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/stellar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 11 additions & 3 deletions src/features/how-it-works/HowItWorks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { useState, useId } from "react";
import { motion, AnimatePresence } from "framer-motion";
import { Globe, Link2, ShieldCheck, ChevronDown } from "lucide-react";
import Image from "next/image";
import { cn } from "@/lib/utils";

const ease = [0.4, 0, 0.2, 1] as const; // smooth ease-out
Expand Down Expand Up @@ -251,9 +252,16 @@ export default function HowItWorks() {
</div>

{/* Footer */}
<p className="mt-12 text-center text-xs font-medium uppercase tracking-widest text-white/40">
Powered by Stellar
</p>
<div className="mt-12 flex items-center justify-center gap-3 text-sm font-medium uppercase tracking-widest text-white/40">
<span>Powered by</span>
<Image
src="/stellar.png"
alt="Powered by Stellar"
width={180}
height={40}
className="h-8 w-auto opacity-70"
/>
</div>
</section>
);
}
Loading