'use client'; import styled from '@emotion/styled'; const Container = styled.div` display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; max-width: 1000px; margin: 0 auto; width: 95%; margin-bottom: 24px; @media (max-width: 800px) { width: 100%; margin: 0; justify-content: center; } `; export const CardContainer = ({ children }: { children?: React.ReactNode }) => { return {children}; };