Build Your Site
Build excellent site with less effort
Pry is a beautiful & robust UI Kit with a complete toolchain. Designed for Productivity, Flexibility and Next.js.
Supercharge your productivity
Our template is wonderfully simple and user-friendly. It's easy to love when you focus on essentials and skip non-critical extras.
Start instantly.
Make it yours, Site within seconds.
Quality
Built by Shadcn UI
Creates interactive components, offering a rich experience to your users.

Robust
Flexibility that cover your needs.
Well documented, separated in packages.
Themeable
Easy to customize
Tweak the theme in your editor for global style changes.
Save time
Built with the latest tech
Every template provides a thoughtfully structured project, offering a codebase that's not only productive but also a joy to work with.
import { useTheme } from "next-themes"
export function Component() {
const { theme, setTheme } = useTheme()
const toggle = () => {
const value = theme === 'dark' ? 'light' : 'dark'
setTheme(value)
}
return (
<button onClick={toggle}>{theme}</button>
)
}