import Head from 'next/head' import CardTrending from '../components/CardTrending' import Collection from '../components/Collection' import SearchBar from '../components/SearchBar' import {pathToSearchAll} from '../utils' import CollectionContinueWatching from "../components/CollectionContinueWatching"; import {ThemeToggler} from "../components/ThemeToggler"; import {useTheme} from "next-themes"; export default function Home() { const limitNormal = 6 const limitTrending = 10 return ( <> Home | Yaps {/*Continue watching*/} {/* Collection of different groups of movies */} {/* Collection of different groups of tv series */} ) }