2025-02-16 15:28:17 -05:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
import { motion } from "framer-motion"
|
|
|
|
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
2025-03-04 09:30:58 -05:00
|
|
|
import { FaBitcoin } from "react-icons/fa6";
|
|
|
|
import { TbArrowsExchange2 } from "react-icons/tb";
|
|
|
|
import { SiLitecoin } from "react-icons/si";
|
|
|
|
import { BadgeDollarSign } from "lucide-react"
|
2025-02-16 15:28:17 -05:00
|
|
|
|
|
|
|
const fadeIn = {
|
|
|
|
initial: { opacity: 0, y: 20 },
|
|
|
|
animate: { opacity: 1, y: 0 },
|
|
|
|
transition: { duration: 0.4 },
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function Exchange() {
|
|
|
|
return (
|
|
|
|
<div className="flex flex-1 overflow-hidden">
|
|
|
|
<SideMenu />
|
|
|
|
<main className="flex-1 w-full overflow-y-auto pl-0 lg:pl-64">
|
|
|
|
<div className="container mx-auto px-4 py-6 w-full">
|
|
|
|
<motion.div {...fadeIn}>
|
2025-03-04 09:30:58 -05:00
|
|
|
<div className="flex justify-center">
|
|
|
|
<h3 className="text-xl font-bold mb-2 uppercase bg-slate-700 rounded px-2">Coming Soon</h3>
|
|
|
|
</div>
|
|
|
|
<h1 className="text-6xl text-center font-bold">Exchange Crypto</h1>
|
|
|
|
<div className="flex justify-center mt-16">
|
|
|
|
<BadgeDollarSign size={69} />
|
|
|
|
</div>
|
|
|
|
<div className="max-w-2xl mx-auto">
|
|
|
|
<h2 className="text-4xl mt-6">We find the best price, seriously</h2>
|
|
|
|
<p className="mt-4">We use the API from several providers to provide comparisons between the different providers. You complete the exchange via our exchange interface (via provider) or through the provider's website. Each time, you can walk out knowing you got the best deal. The best part? We don't take a cut or make a profit off your usage.</p>
|
|
|
|
</div>
|
2025-02-16 15:28:17 -05:00
|
|
|
</motion.div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|