├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── component_request.md │ └── feature_request.md ├── .gitignore ├── .prettierrc.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── app ├── (primary) │ ├── components │ │ ├── animated-form │ │ │ ├── _components │ │ │ │ ├── animated-form.tsx │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── animated-otp │ │ │ ├── _components │ │ │ │ ├── animated-otp.tsx │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── animated-tabs │ │ │ ├── _components │ │ │ │ ├── animated-tabs.tsx │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── bot-detection │ │ │ ├── _components │ │ │ │ ├── bot-detection.tsx │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── expandable-card │ │ │ ├── _components │ │ │ │ ├── expandable-card.tsx │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── framework-agnostic │ │ │ ├── _components │ │ │ │ ├── framework-agnostic.tsx │ │ │ │ ├── frameworkagnostic.css │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── fraud-card │ │ │ ├── _components │ │ │ │ ├── fraud-card.tsx │ │ │ │ ├── fraudcard.css │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── notification-center │ │ │ ├── _components │ │ │ │ ├── notification-center.tsx │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── onboard-card │ │ │ ├── _components │ │ │ │ ├── onboardcard.tsx │ │ │ │ ├── preview.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── security-card │ │ │ ├── _components │ │ │ │ ├── preview.tsx │ │ │ │ ├── security-card.css │ │ │ │ ├── security-card.tsx │ │ │ │ └── show-code.ts │ │ │ └── page.tsx │ │ ├── social-card │ │ │ ├── _components │ │ │ │ ├── preview.tsx │ │ │ │ ├── show-code.ts │ │ │ │ └── social-card.tsx │ │ │ └── page.tsx │ │ ├── stats-card │ │ │ ├── _components │ │ │ │ ├── preview.tsx │ │ │ │ ├── show-code.ts │ │ │ │ ├── statscard.css │ │ │ │ └── statscard.tsx │ │ │ └── page.tsx │ │ ├── text-reveal │ │ │ ├── _components │ │ │ │ ├── preview.tsx │ │ │ │ ├── show-code.ts │ │ │ │ └── text-reveal.tsx │ │ │ └── page.tsx │ │ ├── text-shimmer │ │ │ ├── _components │ │ │ │ ├── preview.tsx │ │ │ │ ├── show-code.ts │ │ │ │ └── text-shimmer.tsx │ │ │ └── page.tsx │ │ └── vault-lock │ │ │ ├── _components │ │ │ ├── preview.tsx │ │ │ ├── show-code.ts │ │ │ └── vault-lock.tsx │ │ │ └── page.tsx │ ├── docs │ │ ├── install-nextjs │ │ │ └── page.tsx │ │ ├── install-tailwindcss │ │ │ └── page.tsx │ │ ├── introduction │ │ │ └── page.tsx │ │ └── page.tsx │ └── layout.tsx ├── (secondary) │ ├── preview │ │ ├── animated-form │ │ │ └── page.tsx │ │ ├── animated-otp │ │ │ └── page.tsx │ │ ├── animated-tabs │ │ │ └── page.tsx │ │ ├── bot-detection │ │ │ └── page.tsx │ │ ├── expandable-card │ │ │ └── page.tsx │ │ ├── framework-agnostic │ │ │ └── page.tsx │ │ ├── fraud-card │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── notification-center │ │ │ └── page.tsx │ │ ├── onboard-card │ │ │ └── page.tsx │ │ ├── security-card │ │ │ └── page.tsx │ │ ├── social-card │ │ │ └── page.tsx │ │ ├── stats-card │ │ │ └── page.tsx │ │ ├── text-reveal │ │ │ └── page.tsx │ │ ├── text-shimmer │ │ │ └── page.tsx │ │ └── vault-lock │ │ │ └── page.tsx │ ├── privacypolicy │ │ └── page.tsx │ └── termsofservice │ │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── not-found.tsx └── page.tsx ├── components.json ├── components ├── code │ ├── CodeBlock.tsx │ ├── CopyCode.tsx │ ├── Tabs.tsx │ ├── TextMorph.tsx │ ├── code-block-wrapper.tsx │ ├── commmand-block.tsx │ └── componentsource.tsx ├── content │ ├── clidependencies.tsx │ ├── dependencies.tsx │ ├── maincontentcontainer.tsx │ ├── maintitle.tsx │ ├── previewcomponentcontainer.tsx │ ├── props-table.tsx │ ├── screen-notice.tsx │ ├── togglebuttongroup.tsx │ └── togglemanualcli.tsx ├── docs │ ├── introductionpage.tsx │ ├── nextjsinstallationpage.tsx │ ├── privacypolicy.tsx │ ├── tailwindinstallationpage.tsx │ └── termsofservice.tsx ├── features │ ├── animated-otp.tsx │ ├── bot-detection.tsx │ ├── build-components.tsx │ ├── build-feature.tsx │ ├── build-with-forgeui.tsx │ ├── cli-compatible.tsx │ ├── component-container.tsx │ ├── faq.tsx │ ├── features-block.tsx │ ├── features-container.tsx │ ├── localhost.tsx │ ├── new-next-app.tsx │ ├── notification-center.tsx │ └── security-card.tsx ├── icons │ ├── floatingsvgs.tsx │ ├── grid.tsx │ ├── logo.tsx │ ├── maccontrols.tsx │ ├── motion.tsx │ ├── nextjs.tsx │ ├── peerlist.tsx │ ├── react.tsx │ ├── shadcn.tsx │ └── tailwindcss.tsx ├── landing │ ├── hero-badge.tsx │ ├── herobuttons.tsx │ ├── herosection.tsx │ ├── landing-cta.tsx │ ├── landing-footer.tsx │ ├── landing-navbar.tsx │ ├── landingpage.tsx │ ├── notfound.tsx │ ├── primaryitems.tsx │ └── techstacksectionhero.tsx ├── layout │ ├── anchor-nav.tsx │ ├── componentnavigation.tsx │ ├── documentsearch.tsx │ ├── footer.tsx │ ├── lazy-show.tsx │ ├── livepreview.tsx │ ├── navbar-drawer.tsx │ ├── navbar.tsx │ └── page-content-sidebar.tsx └── ui │ ├── SocialButtons.tsx │ ├── ThemeToggle.tsx │ ├── accordion.tsx │ ├── anchor-single.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── code-block.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── label.tsx │ ├── scroll-area.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sparkles.tsx │ ├── spotlight.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ └── tooltip.tsx ├── contants └── index.ts ├── eslint.config.mjs ├── hooks ├── use-active-section.ts └── use-toast.ts ├── lib ├── getNavigationFeaturedItems.ts ├── getNavigationItems.ts └── utils.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── provider ├── provider.tsx └── theme-provider.tsx ├── public ├── assets │ ├── gojo.png │ └── toji.png ├── demopfp.png ├── effect.svg ├── file.svg ├── forgeui-ogimage-v2.png ├── globe.svg ├── logo-ui-new.png ├── logo-ui.png ├── newlogo.png ├── next.svg ├── nextjsshop-ad-banner.png ├── pfp.png ├── registry │ ├── animated-form.json │ ├── animated-otp.json │ ├── animated-tabs.json │ ├── bot-detection.json │ ├── expandable-card.json │ ├── framework-agnostic.json │ ├── fraud-card.json │ ├── notification-center.json │ ├── onboard-card.json │ ├── security-card.json │ ├── social-card.json │ ├── stats-card.json │ ├── text-reveal.json │ ├── text-shimmer.json │ └── vault-lock.json ├── robots.txt ├── sitemap.xml ├── vercel.svg └── window.svg ├── tailwind.config.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/component_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/.github/ISSUE_TEMPLATE/component_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/README.md -------------------------------------------------------------------------------- /app/(primary)/components/animated-form/_components/animated-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-form/_components/animated-form.tsx -------------------------------------------------------------------------------- /app/(primary)/components/animated-form/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-form/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/animated-form/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-form/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/animated-form/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-form/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/animated-otp/_components/animated-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-otp/_components/animated-otp.tsx -------------------------------------------------------------------------------- /app/(primary)/components/animated-otp/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-otp/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/animated-otp/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-otp/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/animated-otp/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-otp/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/animated-tabs/_components/animated-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-tabs/_components/animated-tabs.tsx -------------------------------------------------------------------------------- /app/(primary)/components/animated-tabs/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-tabs/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/animated-tabs/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-tabs/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/animated-tabs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/animated-tabs/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/bot-detection/_components/bot-detection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/bot-detection/_components/bot-detection.tsx -------------------------------------------------------------------------------- /app/(primary)/components/bot-detection/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/bot-detection/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/bot-detection/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/bot-detection/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/bot-detection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/bot-detection/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/expandable-card/_components/expandable-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/expandable-card/_components/expandable-card.tsx -------------------------------------------------------------------------------- /app/(primary)/components/expandable-card/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/expandable-card/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/expandable-card/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/expandable-card/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/expandable-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/expandable-card/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/framework-agnostic/_components/framework-agnostic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/framework-agnostic/_components/framework-agnostic.tsx -------------------------------------------------------------------------------- /app/(primary)/components/framework-agnostic/_components/frameworkagnostic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/framework-agnostic/_components/frameworkagnostic.css -------------------------------------------------------------------------------- /app/(primary)/components/framework-agnostic/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/framework-agnostic/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/framework-agnostic/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/framework-agnostic/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/framework-agnostic/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/framework-agnostic/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/fraud-card/_components/fraud-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/fraud-card/_components/fraud-card.tsx -------------------------------------------------------------------------------- /app/(primary)/components/fraud-card/_components/fraudcard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/fraud-card/_components/fraudcard.css -------------------------------------------------------------------------------- /app/(primary)/components/fraud-card/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/fraud-card/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/fraud-card/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/fraud-card/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/fraud-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/fraud-card/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/notification-center/_components/notification-center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/notification-center/_components/notification-center.tsx -------------------------------------------------------------------------------- /app/(primary)/components/notification-center/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/notification-center/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/notification-center/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/notification-center/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/notification-center/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/notification-center/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/onboard-card/_components/onboardcard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/onboard-card/_components/onboardcard.tsx -------------------------------------------------------------------------------- /app/(primary)/components/onboard-card/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/onboard-card/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/onboard-card/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/onboard-card/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/onboard-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/onboard-card/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/security-card/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/security-card/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/security-card/_components/security-card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/security-card/_components/security-card.css -------------------------------------------------------------------------------- /app/(primary)/components/security-card/_components/security-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/security-card/_components/security-card.tsx -------------------------------------------------------------------------------- /app/(primary)/components/security-card/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/security-card/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/security-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/security-card/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/social-card/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/social-card/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/social-card/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/social-card/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/social-card/_components/social-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/social-card/_components/social-card.tsx -------------------------------------------------------------------------------- /app/(primary)/components/social-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/social-card/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/stats-card/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/stats-card/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/stats-card/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/stats-card/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/stats-card/_components/statscard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/stats-card/_components/statscard.css -------------------------------------------------------------------------------- /app/(primary)/components/stats-card/_components/statscard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/stats-card/_components/statscard.tsx -------------------------------------------------------------------------------- /app/(primary)/components/stats-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/stats-card/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/text-reveal/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/text-reveal/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/text-reveal/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/text-reveal/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/text-reveal/_components/text-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/text-reveal/_components/text-reveal.tsx -------------------------------------------------------------------------------- /app/(primary)/components/text-reveal/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/text-reveal/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/text-shimmer/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/text-shimmer/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/text-shimmer/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/text-shimmer/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/text-shimmer/_components/text-shimmer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/text-shimmer/_components/text-shimmer.tsx -------------------------------------------------------------------------------- /app/(primary)/components/text-shimmer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/text-shimmer/page.tsx -------------------------------------------------------------------------------- /app/(primary)/components/vault-lock/_components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/vault-lock/_components/preview.tsx -------------------------------------------------------------------------------- /app/(primary)/components/vault-lock/_components/show-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/vault-lock/_components/show-code.ts -------------------------------------------------------------------------------- /app/(primary)/components/vault-lock/_components/vault-lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/vault-lock/_components/vault-lock.tsx -------------------------------------------------------------------------------- /app/(primary)/components/vault-lock/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/components/vault-lock/page.tsx -------------------------------------------------------------------------------- /app/(primary)/docs/install-nextjs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/docs/install-nextjs/page.tsx -------------------------------------------------------------------------------- /app/(primary)/docs/install-tailwindcss/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/docs/install-tailwindcss/page.tsx -------------------------------------------------------------------------------- /app/(primary)/docs/introduction/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/docs/introduction/page.tsx -------------------------------------------------------------------------------- /app/(primary)/docs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/docs/page.tsx -------------------------------------------------------------------------------- /app/(primary)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(primary)/layout.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/animated-form/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/animated-form/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/animated-otp/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/animated-otp/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/animated-tabs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/animated-tabs/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/bot-detection/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/bot-detection/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/expandable-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/expandable-card/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/framework-agnostic/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/framework-agnostic/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/fraud-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/fraud-card/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/layout.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/notification-center/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/notification-center/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/onboard-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/onboard-card/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/security-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/security-card/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/social-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/social-card/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/stats-card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/stats-card/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/text-reveal/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/text-reveal/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/text-shimmer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/text-shimmer/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/preview/vault-lock/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/preview/vault-lock/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/privacypolicy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/privacypolicy/page.tsx -------------------------------------------------------------------------------- /app/(secondary)/termsofservice/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/(secondary)/termsofservice/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components.json -------------------------------------------------------------------------------- /components/code/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/code/CodeBlock.tsx -------------------------------------------------------------------------------- /components/code/CopyCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/code/CopyCode.tsx -------------------------------------------------------------------------------- /components/code/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/code/Tabs.tsx -------------------------------------------------------------------------------- /components/code/TextMorph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/code/TextMorph.tsx -------------------------------------------------------------------------------- /components/code/code-block-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/code/code-block-wrapper.tsx -------------------------------------------------------------------------------- /components/code/commmand-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/code/commmand-block.tsx -------------------------------------------------------------------------------- /components/code/componentsource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/code/componentsource.tsx -------------------------------------------------------------------------------- /components/content/clidependencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/clidependencies.tsx -------------------------------------------------------------------------------- /components/content/dependencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/dependencies.tsx -------------------------------------------------------------------------------- /components/content/maincontentcontainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/maincontentcontainer.tsx -------------------------------------------------------------------------------- /components/content/maintitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/maintitle.tsx -------------------------------------------------------------------------------- /components/content/previewcomponentcontainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/previewcomponentcontainer.tsx -------------------------------------------------------------------------------- /components/content/props-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/props-table.tsx -------------------------------------------------------------------------------- /components/content/screen-notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/screen-notice.tsx -------------------------------------------------------------------------------- /components/content/togglebuttongroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/togglebuttongroup.tsx -------------------------------------------------------------------------------- /components/content/togglemanualcli.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/content/togglemanualcli.tsx -------------------------------------------------------------------------------- /components/docs/introductionpage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/docs/introductionpage.tsx -------------------------------------------------------------------------------- /components/docs/nextjsinstallationpage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/docs/nextjsinstallationpage.tsx -------------------------------------------------------------------------------- /components/docs/privacypolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/docs/privacypolicy.tsx -------------------------------------------------------------------------------- /components/docs/tailwindinstallationpage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/docs/tailwindinstallationpage.tsx -------------------------------------------------------------------------------- /components/docs/termsofservice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/docs/termsofservice.tsx -------------------------------------------------------------------------------- /components/features/animated-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/animated-otp.tsx -------------------------------------------------------------------------------- /components/features/bot-detection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/bot-detection.tsx -------------------------------------------------------------------------------- /components/features/build-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/build-components.tsx -------------------------------------------------------------------------------- /components/features/build-feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/build-feature.tsx -------------------------------------------------------------------------------- /components/features/build-with-forgeui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/build-with-forgeui.tsx -------------------------------------------------------------------------------- /components/features/cli-compatible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/cli-compatible.tsx -------------------------------------------------------------------------------- /components/features/component-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/component-container.tsx -------------------------------------------------------------------------------- /components/features/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/faq.tsx -------------------------------------------------------------------------------- /components/features/features-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/features-block.tsx -------------------------------------------------------------------------------- /components/features/features-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/features-container.tsx -------------------------------------------------------------------------------- /components/features/localhost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/localhost.tsx -------------------------------------------------------------------------------- /components/features/new-next-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/new-next-app.tsx -------------------------------------------------------------------------------- /components/features/notification-center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/notification-center.tsx -------------------------------------------------------------------------------- /components/features/security-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/features/security-card.tsx -------------------------------------------------------------------------------- /components/icons/floatingsvgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/floatingsvgs.tsx -------------------------------------------------------------------------------- /components/icons/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/grid.tsx -------------------------------------------------------------------------------- /components/icons/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/logo.tsx -------------------------------------------------------------------------------- /components/icons/maccontrols.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/maccontrols.tsx -------------------------------------------------------------------------------- /components/icons/motion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/motion.tsx -------------------------------------------------------------------------------- /components/icons/nextjs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/nextjs.tsx -------------------------------------------------------------------------------- /components/icons/peerlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/peerlist.tsx -------------------------------------------------------------------------------- /components/icons/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/react.tsx -------------------------------------------------------------------------------- /components/icons/shadcn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/shadcn.tsx -------------------------------------------------------------------------------- /components/icons/tailwindcss.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/icons/tailwindcss.tsx -------------------------------------------------------------------------------- /components/landing/hero-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/hero-badge.tsx -------------------------------------------------------------------------------- /components/landing/herobuttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/herobuttons.tsx -------------------------------------------------------------------------------- /components/landing/herosection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/herosection.tsx -------------------------------------------------------------------------------- /components/landing/landing-cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/landing-cta.tsx -------------------------------------------------------------------------------- /components/landing/landing-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/landing-footer.tsx -------------------------------------------------------------------------------- /components/landing/landing-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/landing-navbar.tsx -------------------------------------------------------------------------------- /components/landing/landingpage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/landingpage.tsx -------------------------------------------------------------------------------- /components/landing/notfound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/notfound.tsx -------------------------------------------------------------------------------- /components/landing/primaryitems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/primaryitems.tsx -------------------------------------------------------------------------------- /components/landing/techstacksectionhero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/landing/techstacksectionhero.tsx -------------------------------------------------------------------------------- /components/layout/anchor-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/anchor-nav.tsx -------------------------------------------------------------------------------- /components/layout/componentnavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/componentnavigation.tsx -------------------------------------------------------------------------------- /components/layout/documentsearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/documentsearch.tsx -------------------------------------------------------------------------------- /components/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/footer.tsx -------------------------------------------------------------------------------- /components/layout/lazy-show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/lazy-show.tsx -------------------------------------------------------------------------------- /components/layout/livepreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/livepreview.tsx -------------------------------------------------------------------------------- /components/layout/navbar-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/navbar-drawer.tsx -------------------------------------------------------------------------------- /components/layout/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/navbar.tsx -------------------------------------------------------------------------------- /components/layout/page-content-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/layout/page-content-sidebar.tsx -------------------------------------------------------------------------------- /components/ui/SocialButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/SocialButtons.tsx -------------------------------------------------------------------------------- /components/ui/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/ThemeToggle.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/anchor-single.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/anchor-single.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/code-block.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/sparkles.tsx -------------------------------------------------------------------------------- /components/ui/spotlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/spotlight.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /contants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/contants/index.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /hooks/use-active-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/hooks/use-active-section.ts -------------------------------------------------------------------------------- /hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/hooks/use-toast.ts -------------------------------------------------------------------------------- /lib/getNavigationFeaturedItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/lib/getNavigationFeaturedItems.ts -------------------------------------------------------------------------------- /lib/getNavigationItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/lib/getNavigationItems.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /provider/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/provider/provider.tsx -------------------------------------------------------------------------------- /provider/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/provider/theme-provider.tsx -------------------------------------------------------------------------------- /public/assets/gojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/assets/gojo.png -------------------------------------------------------------------------------- /public/assets/toji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/assets/toji.png -------------------------------------------------------------------------------- /public/demopfp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/demopfp.png -------------------------------------------------------------------------------- /public/effect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/effect.svg -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/forgeui-ogimage-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/forgeui-ogimage-v2.png -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/logo-ui-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/logo-ui-new.png -------------------------------------------------------------------------------- /public/logo-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/logo-ui.png -------------------------------------------------------------------------------- /public/newlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/newlogo.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/nextjsshop-ad-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/nextjsshop-ad-banner.png -------------------------------------------------------------------------------- /public/pfp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/pfp.png -------------------------------------------------------------------------------- /public/registry/animated-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/animated-form.json -------------------------------------------------------------------------------- /public/registry/animated-otp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/animated-otp.json -------------------------------------------------------------------------------- /public/registry/animated-tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/animated-tabs.json -------------------------------------------------------------------------------- /public/registry/bot-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/bot-detection.json -------------------------------------------------------------------------------- /public/registry/expandable-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/expandable-card.json -------------------------------------------------------------------------------- /public/registry/framework-agnostic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/framework-agnostic.json -------------------------------------------------------------------------------- /public/registry/fraud-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/fraud-card.json -------------------------------------------------------------------------------- /public/registry/notification-center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/notification-center.json -------------------------------------------------------------------------------- /public/registry/onboard-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/onboard-card.json -------------------------------------------------------------------------------- /public/registry/security-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/security-card.json -------------------------------------------------------------------------------- /public/registry/social-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/social-card.json -------------------------------------------------------------------------------- /public/registry/stats-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/stats-card.json -------------------------------------------------------------------------------- /public/registry/text-reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/text-reveal.json -------------------------------------------------------------------------------- /public/registry/text-shimmer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/text-shimmer.json -------------------------------------------------------------------------------- /public/registry/vault-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/registry/vault-lock.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/public/window.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanShakya0018/forgeui/HEAD/tsconfig.json --------------------------------------------------------------------------------