import { Inter } from 'next/font/google' import SearchBar from '@/components/searchBar' import Card from '@/components/card' const inter = Inter({ subsets: ['latin'] }) export default function Home() { function onSearch(query: string): void { alert(`Searching for ${query}`) } return (
) }