import { PlusGrid, PlusGridItem, PlusGridRow } from '@/components/plus-grid' import { Button } from './button' import { Container } from './container' import { Gradient } from './gradient' import { Link } from './link' import { Logo } from './logo' import { Subheading } from './text' function SitemapHeading({ children }: { children: React.ReactNode }) { return

{children}

} function SitemapLinks({ children }: { children: React.ReactNode }) { return } function SitemapLink(props: React.ComponentPropsWithoutRef) { return (
  • ) } function Sitemap() { return ( <>
    Product Pricing Analysis API
    Company Careers Blog Company
    Support Help center Community
    Company Terms of service Privacy policy
    ) } function SocialIconX(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function SocialIconFacebook(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function SocialIconLinkedIn(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function SocialLinks() { return ( <> ) } function Copyright() { return (
    © {new Date().getFullYear()} Radiant Inc.
    ) } export function Footer() { return ( ) }