import { CheckCircle } from 'lucide-react';

import { Head, Link } from '@inertiajs/react';

import { Button } from '@/Components/ui/button';

export default function TestimonialsThankYou() {
  return (
    <>
      <Head title="Thank You — RankWiz" />
      <div className="min-h-screen bg-background flex items-center justify-center px-4">
        <div className="max-w-md w-full text-center space-y-6">
          <CheckCircle className="mx-auto h-16 w-16 text-green-500" />
          <div className="space-y-2">
            <h1 className="text-2xl font-bold tracking-tight">Thank you for your testimonial!</h1>
            <p className="text-muted-foreground">
              We really appreciate you sharing your experience. Your testimonial will be reviewed
              and may appear on our site shortly.
            </p>
          </div>
          <Button asChild variant="outline">
            <Link href="/">Back to RankWiz</Link>
          </Button>
        </div>
      </div>
    </>
  );
}
