import { memo } from 'react'; import { SOLUTIONS } from '../constants'; import { Flex, FlexItem, Text } from '@/shared/ui'; export const WhatYouGet = memo(() => { return ( What you get A real-world scaffold: structure + UI foundations + modern stack. {SOLUTIONS.map((x) => ( {x.label}: {x.value} ))} ); });