{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "about-us-page-shadcnui", "type": "registry:page", "title": "About Us Page", "description": "Glassmorphism about page showcasing mission, values, and leadership with motion accents.", "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/page/about/about-us-page.tsx", "content": "\"use client\";\n\nimport { Badge } from \"@/components/ui/badge\";\nimport { Button } from \"@/components/ui/button\";\nimport type { Variants } from \"framer-motion\";\nimport { motion } from \"framer-motion\";\nimport {\n Award,\n Globe,\n HeartHandshake,\n ShieldCheck,\n Sparkles,\n Target,\n Users,\n} from \"lucide-react\";\n\nconst pageVariants: Variants = {\n hidden: { opacity: 0, y: 24 },\n visible: {\n opacity: 1,\n y: 0,\n transition: {\n duration: 0.6,\n ease: \"easeOut\",\n when: \"beforeChildren\",\n staggerChildren: 0.12,\n },\n },\n};\n\nconst cardVariants: Variants = {\n hidden: { opacity: 0, y: 16 },\n visible: {\n opacity: 1,\n y: 0,\n transition: {\n duration: 0.5,\n ease: \"easeOut\",\n },\n },\n};\n\nconst stats = [\n { label: \"Years Building UI Interfaces\", value: \"12+\" },\n { label: \"Global Teams Empowered\", value: \"320+\" },\n { label: \"Customer Satisfaction\", value: \"97%\" },\n { label: \"Accessibility Score\", value: \"AA+\" },\n];\n\nconst values = [\n {\n title: \"Human-Centered\",\n description:\n \"We obsess over inclusive experiences that anticipate needs and remove friction.\",\n icon: HeartHandshake,\n },\n {\n title: \"Craft Excellence\",\n description:\n \"From micro-interactions to complex flows, every detail is intentional and polished.\",\n icon: Sparkles,\n },\n {\n title: \"Secure Foundations\",\n description:\n \"Privacy-first architecture with resilient infrastructure and transparent practices.\",\n icon: ShieldCheck,\n },\n {\n title: \"Global Perspective\",\n description:\n \"Distributed teams spanning 10 time zones collaborating in sync around shared rituals.\",\n icon: Globe,\n },\n];\n\nconst leadership = [\n {\n name: \"Jordan Wells\",\n role: \"Founder & Principal Designer\",\n quote:\n \"Design should feel inevitable, Every interaction should communicate clarity and warmth.\",\n },\n {\n name: \"Amina Patel\",\n role: \"Head of Product Engineering\",\n quote:\n \"We engineer for longevity. Our systems are modular, accessible, and built to evolve.\",\n },\n {\n name: \"Leo Martins\",\n role: \"Director of Customer Experience\",\n quote:\n \"Listening deeply to customers is how we stay ahead and deliver meaningful change.\",\n },\n];\n\nconst milestones = [\n {\n year: \"2013\",\n title: \"Founding\",\n description:\n \"Launched as a distributed studio focused on inclusive product experiences for early-stage teams.\",\n },\n {\n year: \"2016\",\n title: \"Design Systems Practice\",\n description:\n \"Introduced our systems framework, enabling global clients to scale consistent interfaces faster.\",\n },\n {\n year: \"2019\",\n title: \"Motion Intelligence\",\n description:\n \"Expanded engineering capabilities with motion-first workflows and accessibility audits baked in.\",\n },\n {\n year: \"2022\",\n title: \"Global Partnerships\",\n description:\n \"Partnered with enterprise platforms to evolve mission-critical experiences across 42 countries.\",\n },\n {\n year: \"2024\",\n title: \"AI-Assisted Craft\",\n description:\n \"Launched AI-assisted tooling that keeps designers in control while accelerating iteration cycles.\",\n },\n];\n\nexport function AboutUsPage() {\n return (\n \n \n \n
\n
\n \n \n Our Story\n \n
\n \n Crafting human experiences through motion and design\n \n

\n We are a multidisciplinary collective of designers, engineers,\n and strategists building accessible, emotionally resonant\n interfaces for teams who value craft and measurable impact.\n

\n
\n
\n
\n
\n
\n \n
\n

\n Purpose\n

\n

\n Give digital products a tangible sense of care.\n

\n
\n
\n
\n \n Explore our capabilities\n \n
\n
\n \n {stats.map((stat) => (\n \n
\n
\n

\n {stat.label}\n

\n

\n {stat.value}\n

\n
\n \n ))}\n \n \n\n \n
\n \n \n Our DNA\n \n
\n \n Principles that guide every engagement\n \n

\n We scale with intention, placing relationships, trust, and\n measurable outcomes at the center of every partnership.\n

\n
\n
\n \n {values.map((value) => (\n \n
\n
\n
\n \n
\n

\n {value.title}\n

\n
\n

\n {value.description}\n

\n \n ))}\n \n \n\n \n
\n \n \n Leadership\n \n
\n \n A collective focused on meaningful outcomes\n \n

\n Our leadership team brings together decades of experience in\n product design, systems architecture, and customer advocacy to\n deliver durable, human-centered solutions.\n

\n
\n
\n\n \n {leadership.map((leader) => (\n \n
\n
\n
\n
\n {leader.name\n .split(\" \")\n .map((part) => part[0])\n .join(\"\")}\n
\n
\n

\n {leader.name}\n

\n

\n {leader.role}\n

\n
\n
\n

{leader.quote}

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

\n Our Commitment\n

\n

\n We partner with organizations who believe that accessible,\n emotionally intelligent products create loyal communities.\n

\n
\n \n Meet the team\n \n
\n \n\n \n
\n \n \n Our Journey\n \n
\n \n Milestones that shaped our studio\n \n

\n A decade of designing for resilience, joy, and measurable\n business outcomes.\n

\n
\n
\n\n \n {milestones.map((milestone, index) => (\n \n
\n
\n

\n {milestone.year}\n

\n

\n {milestone.title}\n

\n

\n {milestone.description}\n

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