Open sebo6921 opened 4 months ago
There is already an open issue regarding Bento Grid not showing. Actually the code on the github repo is slightely different than in the video. Try implementing the code from the github repo and also check this solution which worked for me. https://github.com/adrianhajdin/portfolio/issues/19#issuecomment-2185340577
Hey so im having an issue cant seem to get the bento grid to even show up at the bottom for some reason
I have changed the code aswell export const BentoGrid = ({ className, children, }: { className?: string; children?: React.ReactNode; }) => { return ( <div className={cn( // change gap-4 to gap-8, change grid-cols-3 to grid-cols-5, remove md:auto-rows-[18rem], add responsive code "grid grid-cols-1 md:grid-cols-6 lg:grid-cols-5 md:grid-row-7 gap-4 lg:gap-8 mx-auto", className )}