├── .cursor └── rules │ └── components.mdc ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── images │ ├── circles.svg │ ├── free-shadcn-ui-blocks.webp │ ├── og │ │ └── ogimage.png │ ├── react-icon.svg │ ├── shadcn-ui-icon.svg │ └── tailwind-icon.svg └── screenshots │ └── block │ ├── about3-4x3.webp │ ├── about3.jpg │ ├── about3.png │ ├── banner1-4x3.webp │ ├── banner1.jpg │ ├── banner1.png │ ├── blog7-4x3.webp │ ├── blog7.jpg │ ├── blog7.png │ ├── blogpost1-4x3.webp │ ├── blogpost1.jpg │ ├── blogpost1.png │ ├── careers4-4x3.webp │ ├── careers4.jpg │ ├── careers4.png │ ├── casestudies2-4x3.webp │ ├── casestudies2.jpg │ ├── casestudies2.png │ ├── casestudy8-4x3.webp │ ├── casestudy8.jpg │ ├── casestudy8.png │ ├── changelog1-4x3.webp │ ├── changelog1.jpg │ ├── changelog1.png │ ├── codeexample1-4x3.webp │ ├── codeexample1.jpg │ ├── codeexample1.png │ ├── community1-4x3.webp │ ├── community1.jpg │ ├── community1.png │ ├── compare7-4x3.webp │ ├── compare7.jpg │ ├── compare7.png │ ├── compliance1-4x3.webp │ ├── compliance1.jpg │ ├── compliance1.png │ ├── contact7-4x3.webp │ ├── contact7.jpg │ ├── contact7.png │ ├── content1-4x3.webp │ ├── content1.jpg │ ├── content1.png │ ├── cta10-4x3.webp │ ├── cta10.jpg │ ├── cta10.png │ ├── cta11-4x3.webp │ ├── cta11.jpg │ ├── cta11.png │ ├── download2-4x3.webp │ ├── download2.jpg │ ├── download2.png │ ├── experience5-4x3.webp │ ├── experience5.jpg │ ├── experience5.png │ ├── faq1-4x3.webp │ ├── faq1.jpg │ ├── faq1.png │ ├── feature1-4x3.webp │ ├── feature1.jpg │ ├── feature1.png │ ├── feature13-4x3.webp │ ├── feature13.jpg │ ├── feature13.png │ ├── feature166-4x3.webp │ ├── feature166.jpg │ ├── feature166.png │ ├── feature17-4x3.webp │ ├── feature17.jpg │ ├── feature17.png │ ├── feature197-4x3.webp │ ├── feature197.jpg │ ├── feature197.png │ ├── feature2-4x3.webp │ ├── feature2.jpg │ ├── feature2.png │ ├── feature43-4x3.webp │ ├── feature43.jpg │ ├── feature43.png │ ├── feature51-4x3.webp │ ├── feature51.jpg │ ├── feature51.png │ ├── feature72-4x3.webp │ ├── feature72.jpg │ ├── feature72.png │ ├── feature73-4x3.webp │ ├── feature73.jpg │ ├── feature73.png │ ├── footer2-4x3.webp │ ├── footer2.jpg │ ├── footer2.png │ ├── gallery6-4x3.webp │ ├── gallery6.jpg │ ├── gallery6.png │ ├── hero1-4x3.webp │ ├── hero1.jpg │ ├── hero1.png │ ├── hero115-4x3.webp │ ├── hero115.jpg │ ├── hero115.png │ ├── hero3-4x3.webp │ ├── hero3.jpg │ ├── hero3.png │ ├── hero45-4x3.webp │ ├── hero45.jpg │ ├── hero45.png │ ├── hero47-4x3.webp │ ├── hero47.jpg │ ├── hero47.png │ ├── hero7-4x3.webp │ ├── hero7.jpg │ ├── hero7.png │ ├── integration3-4x3.webp │ ├── integration3.jpg │ ├── integration3.png │ ├── list2-4x3.webp │ ├── list2.jpg │ ├── list2.png │ ├── login1-4x3.webp │ ├── login1.jpg │ ├── login1.png │ ├── logos8-4x3.webp │ ├── logos8.jpg │ ├── logos8.png │ ├── navbar1-4x3.webp │ ├── navbar1.jpg │ ├── navbar1.png │ ├── pricing2-4x3.webp │ ├── pricing2.jpg │ ├── pricing2.png │ ├── pricing4-4x3.webp │ ├── pricing4.jpg │ ├── pricing4.png │ ├── pricing6-4x3.webp │ ├── pricing6.jpg │ ├── pricing6.png │ ├── resource1-4x3.webp │ ├── resource1.jpg │ ├── resource1.png │ ├── service1-4x3.webp │ ├── service1.jpg │ ├── service1.png │ ├── services4-4x3.webp │ ├── services4.jpg │ ├── services4.png │ ├── signup1-4x3.webp │ ├── signup1.jpg │ ├── signup1.png │ ├── stats8-4x3.webp │ ├── stats8.jpg │ ├── stats8.png │ ├── team1-4x3.webp │ ├── team1.jpg │ ├── team1.png │ ├── testimonial10-4x3.webp │ ├── testimonial10.jpg │ ├── testimonial10.png │ ├── timeline9-4x3.webp │ ├── timeline9.jpg │ ├── timeline9.png │ ├── waitlist1-4x3.webp │ ├── waitlist1.jpg │ └── waitlist1.png ├── scripts └── readme.ts ├── src ├── app │ ├── components │ │ ├── ComponentRenderer.tsx │ │ ├── CopyButton.tsx │ │ ├── Cta.tsx │ │ ├── Hero.tsx │ │ └── MinimapSidebar.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── block │ ├── about3.tsx │ ├── banner1.tsx │ ├── blog7.tsx │ ├── blogpost1.tsx │ ├── careers4.tsx │ ├── casestudies2.tsx │ ├── casestudy8.tsx │ ├── changelog1.tsx │ ├── codeexample1.tsx │ ├── community1.tsx │ ├── compare7.tsx │ ├── compliance1.tsx │ ├── contact7.tsx │ ├── content1.tsx │ ├── cta10.tsx │ ├── cta11.tsx │ ├── download2.tsx │ ├── experience5.tsx │ ├── faq1.tsx │ ├── feature1.tsx │ ├── feature13.tsx │ ├── feature166.tsx │ ├── feature17.tsx │ ├── feature197.tsx │ ├── feature2.tsx │ ├── feature43.tsx │ ├── feature51.tsx │ ├── feature72.tsx │ ├── feature73.tsx │ ├── footer2.tsx │ ├── gallery6.tsx │ ├── hero1.tsx │ ├── hero115.tsx │ ├── hero3.tsx │ ├── hero45.tsx │ ├── hero47.tsx │ ├── hero7.tsx │ ├── integration3.tsx │ ├── list2.tsx │ ├── login1.tsx │ ├── logos8.tsx │ ├── navbar1.tsx │ ├── pricing2.tsx │ ├── pricing4.tsx │ ├── pricing6.tsx │ ├── resource1.tsx │ ├── service1.tsx │ ├── services4.tsx │ ├── signup1.tsx │ ├── stats8.tsx │ ├── team1.tsx │ ├── testimonial10.tsx │ ├── timeline9.tsx │ └── waitlist1.tsx ├── components │ ├── aceternity │ │ └── background-lines.tsx │ ├── kibo-ui │ │ └── code-block │ │ │ ├── index.tsx │ │ │ └── server.tsx │ ├── shadcnblocks │ │ └── logo.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── file-tree.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── magic-card.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── hooks │ └── use-mobile.ts └── lib │ └── utils.ts └── tsconfig.json /.cursor/rules/components.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/.cursor/rules/components.mdc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/images/circles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/images/circles.svg -------------------------------------------------------------------------------- /public/images/free-shadcn-ui-blocks.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/images/free-shadcn-ui-blocks.webp -------------------------------------------------------------------------------- /public/images/og/ogimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/images/og/ogimage.png -------------------------------------------------------------------------------- /public/images/react-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/images/react-icon.svg -------------------------------------------------------------------------------- /public/images/shadcn-ui-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/images/shadcn-ui-icon.svg -------------------------------------------------------------------------------- /public/images/tailwind-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/images/tailwind-icon.svg -------------------------------------------------------------------------------- /public/screenshots/block/about3-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/about3-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/about3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/about3.jpg -------------------------------------------------------------------------------- /public/screenshots/block/about3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/about3.png -------------------------------------------------------------------------------- /public/screenshots/block/banner1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/banner1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/banner1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/banner1.png -------------------------------------------------------------------------------- /public/screenshots/block/blog7-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/blog7-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/blog7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/blog7.jpg -------------------------------------------------------------------------------- /public/screenshots/block/blog7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/blog7.png -------------------------------------------------------------------------------- /public/screenshots/block/blogpost1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/blogpost1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/blogpost1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/blogpost1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/blogpost1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/blogpost1.png -------------------------------------------------------------------------------- /public/screenshots/block/careers4-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/careers4-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/careers4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/careers4.jpg -------------------------------------------------------------------------------- /public/screenshots/block/careers4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/careers4.png -------------------------------------------------------------------------------- /public/screenshots/block/casestudies2-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/casestudies2-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/casestudies2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/casestudies2.jpg -------------------------------------------------------------------------------- /public/screenshots/block/casestudies2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/casestudies2.png -------------------------------------------------------------------------------- /public/screenshots/block/casestudy8-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/casestudy8-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/casestudy8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/casestudy8.jpg -------------------------------------------------------------------------------- /public/screenshots/block/casestudy8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/casestudy8.png -------------------------------------------------------------------------------- /public/screenshots/block/changelog1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/changelog1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/changelog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/changelog1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/changelog1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/changelog1.png -------------------------------------------------------------------------------- /public/screenshots/block/codeexample1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/codeexample1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/codeexample1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/codeexample1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/codeexample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/codeexample1.png -------------------------------------------------------------------------------- /public/screenshots/block/community1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/community1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/community1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/community1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/community1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/community1.png -------------------------------------------------------------------------------- /public/screenshots/block/compare7-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/compare7-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/compare7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/compare7.jpg -------------------------------------------------------------------------------- /public/screenshots/block/compare7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/compare7.png -------------------------------------------------------------------------------- /public/screenshots/block/compliance1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/compliance1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/compliance1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/compliance1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/compliance1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/compliance1.png -------------------------------------------------------------------------------- /public/screenshots/block/contact7-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/contact7-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/contact7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/contact7.jpg -------------------------------------------------------------------------------- /public/screenshots/block/contact7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/contact7.png -------------------------------------------------------------------------------- /public/screenshots/block/content1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/content1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/content1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/content1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/content1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/content1.png -------------------------------------------------------------------------------- /public/screenshots/block/cta10-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/cta10-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/cta10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/cta10.jpg -------------------------------------------------------------------------------- /public/screenshots/block/cta10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/cta10.png -------------------------------------------------------------------------------- /public/screenshots/block/cta11-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/cta11-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/cta11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/cta11.jpg -------------------------------------------------------------------------------- /public/screenshots/block/cta11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/cta11.png -------------------------------------------------------------------------------- /public/screenshots/block/download2-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/download2-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/download2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/download2.jpg -------------------------------------------------------------------------------- /public/screenshots/block/download2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/download2.png -------------------------------------------------------------------------------- /public/screenshots/block/experience5-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/experience5-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/experience5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/experience5.jpg -------------------------------------------------------------------------------- /public/screenshots/block/experience5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/experience5.png -------------------------------------------------------------------------------- /public/screenshots/block/faq1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/faq1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/faq1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/faq1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/faq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/faq1.png -------------------------------------------------------------------------------- /public/screenshots/block/feature1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature1.png -------------------------------------------------------------------------------- /public/screenshots/block/feature13-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature13-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature13.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature13.png -------------------------------------------------------------------------------- /public/screenshots/block/feature166-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature166-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature166.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature166.png -------------------------------------------------------------------------------- /public/screenshots/block/feature17-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature17-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature17.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature17.png -------------------------------------------------------------------------------- /public/screenshots/block/feature197-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature197-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature197.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature197.png -------------------------------------------------------------------------------- /public/screenshots/block/feature2-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature2-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature2.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature2.png -------------------------------------------------------------------------------- /public/screenshots/block/feature43-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature43-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature43.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature43.png -------------------------------------------------------------------------------- /public/screenshots/block/feature51-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature51-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature51.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature51.png -------------------------------------------------------------------------------- /public/screenshots/block/feature72-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature72-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature72.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature72.png -------------------------------------------------------------------------------- /public/screenshots/block/feature73-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature73-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/feature73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature73.jpg -------------------------------------------------------------------------------- /public/screenshots/block/feature73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/feature73.png -------------------------------------------------------------------------------- /public/screenshots/block/footer2-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/footer2-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/footer2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/footer2.jpg -------------------------------------------------------------------------------- /public/screenshots/block/footer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/footer2.png -------------------------------------------------------------------------------- /public/screenshots/block/gallery6-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/gallery6-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/gallery6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/gallery6.jpg -------------------------------------------------------------------------------- /public/screenshots/block/gallery6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/gallery6.png -------------------------------------------------------------------------------- /public/screenshots/block/hero1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/hero1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/hero1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero1.png -------------------------------------------------------------------------------- /public/screenshots/block/hero115-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero115-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/hero115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero115.jpg -------------------------------------------------------------------------------- /public/screenshots/block/hero115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero115.png -------------------------------------------------------------------------------- /public/screenshots/block/hero3-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero3-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/hero3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero3.jpg -------------------------------------------------------------------------------- /public/screenshots/block/hero3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero3.png -------------------------------------------------------------------------------- /public/screenshots/block/hero45-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero45-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/hero45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero45.jpg -------------------------------------------------------------------------------- /public/screenshots/block/hero45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero45.png -------------------------------------------------------------------------------- /public/screenshots/block/hero47-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero47-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/hero47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero47.jpg -------------------------------------------------------------------------------- /public/screenshots/block/hero47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero47.png -------------------------------------------------------------------------------- /public/screenshots/block/hero7-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero7-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/hero7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero7.jpg -------------------------------------------------------------------------------- /public/screenshots/block/hero7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/hero7.png -------------------------------------------------------------------------------- /public/screenshots/block/integration3-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/integration3-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/integration3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/integration3.jpg -------------------------------------------------------------------------------- /public/screenshots/block/integration3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/integration3.png -------------------------------------------------------------------------------- /public/screenshots/block/list2-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/list2-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/list2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/list2.jpg -------------------------------------------------------------------------------- /public/screenshots/block/list2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/list2.png -------------------------------------------------------------------------------- /public/screenshots/block/login1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/login1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/login1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/login1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/login1.png -------------------------------------------------------------------------------- /public/screenshots/block/logos8-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/logos8-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/logos8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/logos8.jpg -------------------------------------------------------------------------------- /public/screenshots/block/logos8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/logos8.png -------------------------------------------------------------------------------- /public/screenshots/block/navbar1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/navbar1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/navbar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/navbar1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/navbar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/navbar1.png -------------------------------------------------------------------------------- /public/screenshots/block/pricing2-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing2-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/pricing2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing2.jpg -------------------------------------------------------------------------------- /public/screenshots/block/pricing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing2.png -------------------------------------------------------------------------------- /public/screenshots/block/pricing4-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing4-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/pricing4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing4.jpg -------------------------------------------------------------------------------- /public/screenshots/block/pricing4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing4.png -------------------------------------------------------------------------------- /public/screenshots/block/pricing6-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing6-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/pricing6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing6.jpg -------------------------------------------------------------------------------- /public/screenshots/block/pricing6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/pricing6.png -------------------------------------------------------------------------------- /public/screenshots/block/resource1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/resource1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/resource1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/resource1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/resource1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/resource1.png -------------------------------------------------------------------------------- /public/screenshots/block/service1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/service1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/service1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/service1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/service1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/service1.png -------------------------------------------------------------------------------- /public/screenshots/block/services4-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/services4-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/services4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/services4.jpg -------------------------------------------------------------------------------- /public/screenshots/block/services4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/services4.png -------------------------------------------------------------------------------- /public/screenshots/block/signup1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/signup1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/signup1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/signup1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/signup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/signup1.png -------------------------------------------------------------------------------- /public/screenshots/block/stats8-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/stats8-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/stats8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/stats8.jpg -------------------------------------------------------------------------------- /public/screenshots/block/stats8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/stats8.png -------------------------------------------------------------------------------- /public/screenshots/block/team1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/team1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/team1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/team1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/team1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/team1.png -------------------------------------------------------------------------------- /public/screenshots/block/testimonial10-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/testimonial10-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/testimonial10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/testimonial10.jpg -------------------------------------------------------------------------------- /public/screenshots/block/testimonial10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/testimonial10.png -------------------------------------------------------------------------------- /public/screenshots/block/timeline9-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/timeline9-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/timeline9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/timeline9.jpg -------------------------------------------------------------------------------- /public/screenshots/block/timeline9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/timeline9.png -------------------------------------------------------------------------------- /public/screenshots/block/waitlist1-4x3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/waitlist1-4x3.webp -------------------------------------------------------------------------------- /public/screenshots/block/waitlist1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/waitlist1.jpg -------------------------------------------------------------------------------- /public/screenshots/block/waitlist1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/public/screenshots/block/waitlist1.png -------------------------------------------------------------------------------- /scripts/readme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/scripts/readme.ts -------------------------------------------------------------------------------- /src/app/components/ComponentRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/components/ComponentRenderer.tsx -------------------------------------------------------------------------------- /src/app/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/app/components/Cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/components/Cta.tsx -------------------------------------------------------------------------------- /src/app/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/components/Hero.tsx -------------------------------------------------------------------------------- /src/app/components/MinimapSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/components/MinimapSidebar.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/block/about3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/about3.tsx -------------------------------------------------------------------------------- /src/block/banner1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/banner1.tsx -------------------------------------------------------------------------------- /src/block/blog7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/blog7.tsx -------------------------------------------------------------------------------- /src/block/blogpost1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/blogpost1.tsx -------------------------------------------------------------------------------- /src/block/careers4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/careers4.tsx -------------------------------------------------------------------------------- /src/block/casestudies2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/casestudies2.tsx -------------------------------------------------------------------------------- /src/block/casestudy8.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/casestudy8.tsx -------------------------------------------------------------------------------- /src/block/changelog1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/changelog1.tsx -------------------------------------------------------------------------------- /src/block/codeexample1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/codeexample1.tsx -------------------------------------------------------------------------------- /src/block/community1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/community1.tsx -------------------------------------------------------------------------------- /src/block/compare7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/compare7.tsx -------------------------------------------------------------------------------- /src/block/compliance1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/compliance1.tsx -------------------------------------------------------------------------------- /src/block/contact7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/contact7.tsx -------------------------------------------------------------------------------- /src/block/content1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/content1.tsx -------------------------------------------------------------------------------- /src/block/cta10.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/cta10.tsx -------------------------------------------------------------------------------- /src/block/cta11.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/cta11.tsx -------------------------------------------------------------------------------- /src/block/download2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/download2.tsx -------------------------------------------------------------------------------- /src/block/experience5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/experience5.tsx -------------------------------------------------------------------------------- /src/block/faq1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/faq1.tsx -------------------------------------------------------------------------------- /src/block/feature1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature1.tsx -------------------------------------------------------------------------------- /src/block/feature13.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature13.tsx -------------------------------------------------------------------------------- /src/block/feature166.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature166.tsx -------------------------------------------------------------------------------- /src/block/feature17.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature17.tsx -------------------------------------------------------------------------------- /src/block/feature197.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature197.tsx -------------------------------------------------------------------------------- /src/block/feature2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature2.tsx -------------------------------------------------------------------------------- /src/block/feature43.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature43.tsx -------------------------------------------------------------------------------- /src/block/feature51.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature51.tsx -------------------------------------------------------------------------------- /src/block/feature72.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature72.tsx -------------------------------------------------------------------------------- /src/block/feature73.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/feature73.tsx -------------------------------------------------------------------------------- /src/block/footer2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/footer2.tsx -------------------------------------------------------------------------------- /src/block/gallery6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/gallery6.tsx -------------------------------------------------------------------------------- /src/block/hero1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/hero1.tsx -------------------------------------------------------------------------------- /src/block/hero115.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/hero115.tsx -------------------------------------------------------------------------------- /src/block/hero3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/hero3.tsx -------------------------------------------------------------------------------- /src/block/hero45.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/hero45.tsx -------------------------------------------------------------------------------- /src/block/hero47.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/hero47.tsx -------------------------------------------------------------------------------- /src/block/hero7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/hero7.tsx -------------------------------------------------------------------------------- /src/block/integration3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/integration3.tsx -------------------------------------------------------------------------------- /src/block/list2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/list2.tsx -------------------------------------------------------------------------------- /src/block/login1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/login1.tsx -------------------------------------------------------------------------------- /src/block/logos8.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/logos8.tsx -------------------------------------------------------------------------------- /src/block/navbar1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/navbar1.tsx -------------------------------------------------------------------------------- /src/block/pricing2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/pricing2.tsx -------------------------------------------------------------------------------- /src/block/pricing4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/pricing4.tsx -------------------------------------------------------------------------------- /src/block/pricing6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/pricing6.tsx -------------------------------------------------------------------------------- /src/block/resource1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/resource1.tsx -------------------------------------------------------------------------------- /src/block/service1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/service1.tsx -------------------------------------------------------------------------------- /src/block/services4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/services4.tsx -------------------------------------------------------------------------------- /src/block/signup1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/signup1.tsx -------------------------------------------------------------------------------- /src/block/stats8.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/stats8.tsx -------------------------------------------------------------------------------- /src/block/team1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/team1.tsx -------------------------------------------------------------------------------- /src/block/testimonial10.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/testimonial10.tsx -------------------------------------------------------------------------------- /src/block/timeline9.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/timeline9.tsx -------------------------------------------------------------------------------- /src/block/waitlist1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/block/waitlist1.tsx -------------------------------------------------------------------------------- /src/components/aceternity/background-lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/aceternity/background-lines.tsx -------------------------------------------------------------------------------- /src/components/kibo-ui/code-block/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/kibo-ui/code-block/index.tsx -------------------------------------------------------------------------------- /src/components/kibo-ui/code-block/server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/kibo-ui/code-block/server.tsx -------------------------------------------------------------------------------- /src/components/shadcnblocks/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/shadcnblocks/logo.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/file-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/file-tree.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/magic-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/magic-card.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadcnblocks/shadcn-ui-blocks/HEAD/tsconfig.json --------------------------------------------------------------------------------