import './globals.css' import { Inter } from 'next/font/google' const inter = Inter({ subsets: ['latin'] }) export const metadata = { title: 'Semantic Image Search', description: 'Search for images using text (built w/ Transformers.js and Supabase)', } export default function RootLayout({ children }) { return ( {children} ) }