Radix UI Website Markup

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Website Markup Using Radix UI

Radix UI is a library of unstyled (headless) primitives for React with a focus on accessibility. It provides correct semantics, keyboard navigation, ARIA attributes, and focus management — without imposing visual styles. Developers write their own CSS/Tailwind.

Radix Principles

Unstyled: components carry no visual styles. <Dialog.Root> has no color or padding — only logic.

Accessible by default: every component implements WAI-ARIA patterns. For example, <Select> automatically manages role="combobox", aria-expanded, aria-activedescendant, keyboard navigation (arrows, Enter, Escape).

Composable: components consist of parts (Anatomy) that can each be styled independently.

Installation and Usage

npm install @radix-ui/react-dialog @radix-ui/react-select @radix-ui/react-dropdown-menu
import * as Dialog from '@radix-ui/react-dialog';

function Modal() {
  return (
    <Dialog.Root>
      <Dialog.Trigger asChild>
        <button className="btn-primary">Open</button>
      </Dialog.Trigger>
      <Dialog.Portal>
        <Dialog.Overlay className="fixed inset-0 bg-black/50 backdrop-blur-sm" />
        <Dialog.Content className="fixed top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 bg-white rounded-lg p-6 w-full max-w-md shadow-xl focus:outline-none">
          <Dialog.Title className="text-xl font-semibold">Title</Dialog.Title>
          <Dialog.Description className="mt-2 text-gray-600">
            Dialog description.
          </Dialog.Description>
          <Dialog.Close asChild>
            <button className="absolute top-4 right-4" aria-label="Close">
              ✕
            </button>
          </Dialog.Close>
        </Dialog.Content>
      </Dialog.Portal>
    </Dialog.Root>
  );
}

Styling States Through Data Attributes

Radix sets data-state attributes that can be used in CSS:

/* Dialog appearance animation */
[data-state="open"] .dialog-overlay {
  animation: fadeIn 150ms ease;
}
[data-state="closed"] .dialog-overlay {
  animation: fadeOut 150ms ease;
}

/* Select open state */
[data-state="open"] .select-trigger {
  border-color: #2563eb;
}

With Tailwind — via the tailwindcss-radix plugin:

<Select.Trigger className="data-[state=open]:border-blue-500 data-[placeholder]:text-gray-400" />

Accessibility — What You Get for Free

  • Focus trap: in Dialog and Popover, focus automatically moves inside and doesn't escape
  • Escape to close: Dialog, Popover, Select close on Escape
  • Scroll lock: with Dialog open — page doesn't scroll
  • ARIA: automatic aria-haspopup, aria-expanded, aria-controls, role
  • Keyboard nav: in Select, Menu, RadioGroup — arrows + Home/End

Radix Primitives Components

  • Dialog, AlertDialog, Sheet
  • Select, DropdownMenu, ContextMenu, NavigationMenu
  • Tooltip, Popover, HoverCard
  • Accordion, Tabs, Collapsible
  • Checkbox, RadioGroup, Switch, Slider
  • Progress, ScrollArea, Separator
  • Avatar, AspectRatio

Shadcn/ui — Radix Wrapper

Shadcn/ui provides ready-styled components based on Radix + Tailwind. Unlike typical UI libraries — components are copied into the project (npx shadcn-ui add button), not imported as a dependency. Complete freedom to modify.

Timeline

Implementing a set of UI components (modal, dropdown, select, tabs, form) using Radix UI + custom styles: 3–5 days depending on quantity and component complexity.