import React from 'react'; import clsx from 'clsx'; import Link from 'next/link'; import { OrbitIcon } from 'lucide-react'; import { GlowBg } from '@/components/shared/ui/glow-bg'; /** * A footer component meant to be used in the landing page. * It shows a footer with a title, description, and can render columns of links etc. */ export const LandingFooter = ({ className, children, title, description, footnote, logoComponent, withBackground = false, withBackgroundGlow = false, withBackgroundGradient = false, variant = 'primary', backgroundGlowVariant = 'primary', }: { className?: string; children?: React.ReactNode; title?: string; description?: string; footnote?: string | React.ReactNode; logoComponent?: React.ReactNode; withBackground?: boolean; withBackgroundGlow?: boolean; withBackgroundGradient?: boolean; variant?: 'primary' | 'secondary'; backgroundGlowVariant?: 'primary' | 'secondary'; }) => { const columnNumber = React.Children.count(children); return ( ); };