import { useState } from 'react' import { ButtonCommon, Layout, ModalCommon, ProductCarousel, RelevantBlogPosts, CollapseCommon, } from 'src/components/common' import { CollectionCarcousel } from 'src/components/modules/home' import image5 from '../public/assets/images/image5.png' import image6 from '../public/assets/images/image6.png' import image7 from '../public/assets/images/image7.png' import image8 from '../public/assets/images/image8.png' const dataTest = [ { name: 'Tomato', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image5.src, }, { name: 'Cucumber', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image6.src, }, { name: 'Carrot', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image7.src, }, { name: 'Salad', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image8.src, }, { name: 'Tomato', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image5.src, }, { name: 'Cucumber', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image6.src, }, { name: 'Tomato', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image5.src, }, { name: 'Cucumber', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image6.src, }, { name: 'Carrot', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image7.src, }, { name: 'Salad', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image8.src, }, { name: 'Tomato', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image5.src, }, { name: 'Cucumber', weight: '250g', category: 'VEGGIE', price: 'Rp 27.500', imageSrc: image6.src, }, ] const COLLAPSE_DATA = [ { title: "This is a subtitle", content: [ "When you’re trying to eat healthier but want something more substantial than a leafy green salad, broccoli salad is there for you. I love the crunch and heft of broccoli, especially when it’s cut up into bite size spoonable pieces.", "Some people aren’t into raw broccoli, but I love it! I always go for the raw broccoli on those vegetable platters that seem to be at every potluck/party you go to.", "This is a simple broccoli salad: you have the bulk of it, raw broccoli; crunchy red onions for a bit of acidity and raw crunch, craisins for sweetness, almonds for a nutty counter point; and a sweet and tangy soy-rice vinegar-sesame dressing.", ], link: "/title" }, { title: "This is a subtitle", content: [ "When you’re trying to eat healthier but want something more substantial than a leafy green salad, broccoli salad is there for you. I love the crunch and heft of broccoli, especially when it’s cut up into bite size spoonable pieces.", "Some people aren’t into raw broccoli, but I love it! I always go for the raw broccoli on those vegetable platters that seem to be at every potluck/party you go to.", "This is a simple broccoli salad: you have the bulk of it, raw broccoli; crunchy red onions for a bit of acidity and raw crunch, craisins for sweetness, almonds for a nutty counter point; and a sweet and tangy soy-rice vinegar-sesame dressing.", ], link: "/title" }, { title: "This is a subtitle", content: [ "When you’re trying to eat healthier but want something more substantial than a leafy green salad, broccoli salad is there for you. I love the crunch and heft of broccoli, especially when it’s cut up into bite size spoonable pieces.", "Some people aren’t into raw broccoli, but I love it! I always go for the raw broccoli on those vegetable platters that seem to be at every potluck/party you go to.", "This is a simple broccoli salad: you have the bulk of it, raw broccoli; crunchy red onions for a bit of acidity and raw crunch, craisins for sweetness, almonds for a nutty counter point; and a sweet and tangy soy-rice vinegar-sesame dressing.", ], link: "/title" }, { title: "This is a subtitle", content: [ "When you’re trying to eat healthier but want something more substantial than a leafy green salad, broccoli salad is there for you. I love the crunch and heft of broccoli, especially when it’s cut up into bite size spoonable pieces.", "Some people aren’t into raw broccoli, but I love it! I always go for the raw broccoli on those vegetable platters that seem to be at every potluck/party you go to.", "This is a simple broccoli salad: you have the bulk of it, raw broccoli; crunchy red onions for a bit of acidity and raw crunch, craisins for sweetness, almonds for a nutty counter point; and a sweet and tangy soy-rice vinegar-sesame dressing.", ], link: "/title" }, ] export default function Test() { return ( <> ) } Test.Layout = Layout