Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
797f9a9
feat: add Stepper and Terminal components with framer-motion integration
MarcosvBueno Dec 21, 2025
838fde2
feat: add installation page and update getting started index
MarcosvBueno Dec 21, 2025
fa0433d
fix: update import path for Button component in installation document…
lucasadsr Dec 22, 2025
042bdb0
Merge pull request #81 from pittaya-ui/feat-add-installatin-page
lucasadsr Dec 22, 2025
72397d0
feat: add Badge component documentation with usage guidelines and exa…
lucasadsr Dec 22, 2025
e294baf
feat: add Popover component with documentation, usage guidelines, and…
lucasadsr Dec 22, 2025
74d14e1
feat: introduce Command component with dialog and examples for enhanc…
lucasadsr Dec 22, 2025
f30cbaa
feat: add Multi-Select component with examples and documentation for …
lucasadsr Dec 22, 2025
254e2b2
feat: add Badge, Command, Multi-Select, and Popover components to doc…
lucasadsr Dec 22, 2025
b1c2fd7
feat: implement Dialog component with customizable overlay, content, …
lucasadsr Dec 22, 2025
04d15ce
Merge pull request #82 from pittaya-ui/feat-add-some-components
jjgouveia Dec 25, 2025
486b606
Add SVG files for horizontal and icon representations of "AM I ON" in…
MarcosvBueno Dec 29, 2025
3bcb398
feat: add custom shadow color support to Card component and integrate…
MarcosvBueno Dec 29, 2025
1bf4cd1
feat: enhance SidebarLocal with publicity post card and adjust layout…
MarcosvBueno Dec 29, 2025
ee9fed7
Add new SVG images and update references in SidebarLocal component
MarcosvBueno Dec 29, 2025
fbbdbff
Merge pull request #83 from pittaya-ui/feat-add-publicity-post-card-o…
lucasadsr Dec 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
559 changes: 557 additions & 2 deletions package-lock.json

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
"analyze:ci": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
Expand All @@ -22,19 +25,23 @@
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.26",
"lucide-react": "^0.539.0",
"next": "^16.0.0",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.69.0",
"react-icons": "^5.5.0",
"react-syntax-highlighter": "^15.6.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"three": "^0.181.1",
"unicornstudio-react": "^1.4.29-1"
"unicornstudio-react": "^1.4.29-1",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
Expand Down
11 changes: 11 additions & 0 deletions public/amion-images/amion-horizontal-white-green.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/amion-images/amion-icon-green.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/docs/[slug]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const metadata: Metadata = {

export default function DocsLayout({ children }: { children: ReactNode }) {
return (
<div className="mx-auto flex w-full max-w-7xl gap-6 px-6 pt-24 pb-16 lg:grid lg:grid-cols-[260px_minmax(0,1fr)] xl:grid-cols-[260px_minmax(0,1fr)_220px]">
<div className="mx-auto flex w-full max-w-7xl gap-6 px-6 pt-24 pb-32 lg:grid lg:grid-cols-[260px_minmax(0,1fr)] xl:grid-cols-[260px_minmax(0,1fr)_220px]">
{children}
</div>
);
Expand Down
Loading