import { memo, ReactNode } from 'react'; import { Box, Flex, FlexItem, Text } from '@/shared/ui'; import { RingSoft } from './RingSoft'; import { CodeLine } from './CodeLine'; import { Commands } from '../constants'; function StepLight({ label, children }: { label: string; children: ReactNode }) { return ( {label} {children} ); } export const QuickStartPanel = memo(() => { return ( Quick start Create an app in seconds — clean architecture, ready to scale. Tip: add your first feature inside your feature modules and delete this page when ready. ); });