import { Footer } from "@/components/ui/footer-1";
import {
Instagram,
Twitter,
Linkedin,
Github,
Youtube,
Facebook,
} from "lucide-react";
export default function FooterDemo() {
return (
<div className="min-h-screen flex flex-col justify-between">
<Footer
logoSrc="https://pub-940ccf6255b54fa799a9b01050e6c227.r2.dev/ruixen-dark.png"
logoAlt="Ruixen Logo"
description="Empowering teams to achieve success through intuitive UI and seamless collaboration."
socialLinks={[
{ icon: Instagram, href: "https://instagram.com", label: "Instagram" },
{ icon: Twitter, href: "https://x.com/ruixen_ui", label: "Twitter" },
{ icon: Linkedin, href: "https://21st.dev/?ref=ruixen", label: "LinkedIn" },
// { icon: Github, href: "https://21st.dev/?ref=ruixen", label: "GitHub" },
// { icon: Youtube, href: "https://21st.dev/?ref=ruixen", label: "YouTube" },
// { icon: Facebook, href: "https://21st.dev/?ref=ruixen", label: "Facebook" },
]}
columns={[
{
title: "FEATURES",
links: [
{ label: "Task Management", href: "https://21st.dev/?ref=ruixen" },
{ label: "Gantt Charts", href: "https://21st.dev/?ref=ruixen", badge: "Pro" },
{ label: "Time Tracking", href: "https://21st.dev/?ref=ruixen" },
{ label: "Resource Allocation", href: "https://21st.dev/?ref=ruixen" },
{ label: "Automation", href: "https://21st.dev/?ref=ruixen" },
],
},
{
title: "RESOURCES",
links: [
{ label: "Blog", href: "https://21st.dev/?ref=ruixen" },
{ label: "Webinars", href: "https://21st.dev/?ref=ruixen", badge: "New" },
{ label: "Case Studies", href: "https://21st.dev/?ref=ruixen" },
{ label: "Help Center", href: "https://21st.dev/?ref=ruixen" },
{ label: "Documentation", href: "https://21st.dev/?ref=ruixen" },
],
},
{
title: "COMPANY",
links: [
{ label: "About Us", href: "https://21st.dev/?ref=ruixen" },
{ label: "Careers", href: "https://21st.dev/?ref=ruixen", badge: "Hiring" },
{ label: "Partners", href: "https://21st.dev/?ref=ruixen" },
{ label: "Contact", href: "https://21st.dev/?ref=ruixen" },
{ label: "Press", href: "https://21st.dev/?ref=ruixen" },
],
},
{
title: "LEGAL",
links: [
{ label: "Privacy Policy", href: "https://21st.dev/?ref=ruixen" },
{ label: "Terms of Service", href: "https://21st.dev/?ref=ruixen" },
{ label: "Cookie Settings", href: "https://21st.dev/?ref=ruixen" },
{ label: "Security", href: "https://21st.dev/?ref=ruixen" },
],
},
{
title: "COMMUNITY",
links: [
{ label: "Forums", href: "https://21st.dev/?ref=ruixen" },
{ label: "Events", href: "https://21st.dev/?ref=ruixen" },
{ label: "Open Source", href: "https://21st.dev/?ref=ruixen" },
{ label: "Ambassadors", href: "https://21st.dev/?ref=ruixen" },
],
},
]}
/>
</div>
);
}