All files / components/layout PublicFooter.tsx

100% Statements 28/28
100% Branches 1/1
100% Functions 1/1
100% Lines 28/28

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 401x         1x 88x 88x 88x 88x 88x 88x 88x 88x   88x 88x 88x 88x   88x 88x   88x 88x   88x 88x   88x 88x   88x 88x 88x 88x 88x   88x  
'use client';
 
import Link from 'next/link';
import Image from 'next/image';
 
export function PublicFooter() {
  return (
    <footer className="border-t py-12">
      <div className="container">
        <div className="flex flex-col items-center justify-between gap-4 md:flex-row">
          <div className="flex items-center space-x-2">
            <Image src="/logo-3.png" width={24} height={24} alt="ProofID" />
            <span className="gradient-text text-lg font-bold">ProofID</span>
            <span className="text-sm text-muted-foreground">
              Proof-of-work identity for independent workers
            </span>
          </div>
          <div className="flex flex-wrap items-center justify-center gap-6 text-sm text-muted-foreground md:justify-end">
            <Link href="/about" className="transition-colors hover:text-foreground">
              About
            </Link>
            <Link href="/pricing" className="transition-colors hover:text-foreground">
              Pricing
            </Link>
            <Link href="/privacy" className="transition-colors hover:text-foreground">
              Privacy
            </Link>
            <Link href="/terms" className="transition-colors hover:text-foreground">
              Terms
            </Link>
            <Link href="/verify" className="transition-colors hover:text-foreground">
              Verify
            </Link>
          </div>
        </div>
      </div>
    </footer>
  );
}