import { Layout } from 'src/components/common'; import { HomeBanner, HomeCategories, HomeCollection, HomeCTA, HomeFeature, HomeRecipe, HomeSubscribe, HomeVideo } from 'src/components/modules/home'; import {SelectCommon} from 'src/components/common' const OPTION_SORT = [ { name: "By Name" }, { name: "Price (High to Low)" }, { name: "On Sale" } ] export default function Home() { return ( <> {/* */} Sort By Sort By // todo: uncomment {/* */} ) } Home.Layout = Layout