"use client"; import Image from 'next/image'; import Link from 'next/link'; import { useState } from 'react'; import { IconSpinner } from '@/app/components/ui/icons'; import logo from '@/public/smart-retrieval-logo.webp'; export default function Home() { const [isLoading, setIsLoading] = useState(false); return (
Smart Retrieval Logo

Smart Retrieval

Your intelligent solution for quick and accurate information retrieval.

Experience the power of Smart Retrieval today!

{ setIsLoading(true); }}>
{isLoading ? ( ) : null} Get Started
); }