# πŸ“ Code Examples ## Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π° ### Feature ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ ```typescript // features/your-card.tsx "use client"; import { motion } from "framer-motion"; import { Card } from "@/shared/ui/card"; interface YourCardProps { title: string; description: string; } export function YourCard({ title, description }: YourCardProps) { return (

{title}

{description}

); } ``` ### Widget сСкция ```typescript // widgets/your-section.tsx "use client"; import { SectionContainer } from "@/features/section-container"; import { SectionHeader } from "@/features/section-header"; export function YourSection() { return (
{/* ΠšΠΎΠ½Ρ‚Π΅Π½Ρ‚ */}
); } ``` ## Π Π°Π±ΠΎΡ‚Π° с состояниСм ```typescript "use client"; import { useState } from "react"; export function Counter() { const [count, setCount] = useState(0); return (

Count: {count}

); } ``` ## Анимации ### Fade in + Slide up ```typescript Content ```