{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "about-us-section-shadcnui", "type": "registry:block", "title": "About Us", "description": "About us section with value cards, icons, and animated reveal effects", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/sections/about-us-section.tsx", "content": "\"use client\";\n\nimport { Badge } from \"@/components/ui/badge\";\nimport { Card } from \"@/components/ui/card\";\nimport { motion, Variants } from \"framer-motion\";\nimport { Award, Heart, Target, Users } from \"lucide-react\";\n\nconst values = [\n {\n icon: Target,\n title: \"Our Mission\",\n description:\n \"To deliver exceptional solutions that drive growth and innovation for our clients.\",\n },\n {\n icon: Users,\n title: \"Our Team\",\n description:\n \"A diverse group of talented professionals dedicated to excellence.\",\n },\n {\n icon: Award,\n title: \"Our Excellence\",\n description:\n \"Recognized for outstanding quality and innovation in everything we do.\",\n },\n {\n icon: Heart,\n title: \"Our Values\",\n description:\n \"Integrity, transparency, and commitment to our clients success.\",\n },\n];\n\nexport function AboutUsSection() {\n const containerVariants: Variants = {\n hidden: { opacity: 0 },\n visible: {\n opacity: 1,\n transition: {\n staggerChildren: 0.15,\n },\n },\n };\n\n const itemVariants: Variants = {\n hidden: { opacity: 0, y: 30 },\n visible: {\n opacity: 1,\n y: 0,\n transition: { duration: 0.6, ease: \"easeOut\" },\n },\n };\n\n return (\n
\n
\n \n About Us\n

\n Who We Are\n

\n

\n We are a team of passionate professionals committed to delivering\n excellence and driving innovation in everything we do.\n

\n \n\n \n {values.map((value, index) => {\n const Icon = value.icon;\n return (\n \n \n
\n \n
\n

{value.title}

\n

{value.description}

\n
\n
\n );\n })}\n \n\n \n

Join Our Journey

\n

\n We're always looking for talented individuals to join our growing\n team. Let's build something amazing together.\n

\n \n
\n
\n );\n}\n", "type": "registry:block", "target": "components/uitripled/about-us-section-shadcnui.tsx" } ] }