├── .gitignore ├── .lintstagedrc ├── .prettierrc ├── CNAME ├── README.md ├── bun.lockb ├── components.json ├── dockerfile ├── eslint.config.js ├── index.html ├── next-env.d.ts ├── next.config.ts ├── package.json ├── postcss.config.js ├── public ├── icons │ ├── arrow-black.svg │ ├── arrow-purple.svg │ ├── arrow-up.svg │ ├── docs.svg │ └── star.svg ├── image │ ├── V.png │ ├── iphone.png │ ├── logo.webp │ ├── mockup-2.png │ ├── mockup-3.png │ ├── mockup.jpeg │ ├── noise.png │ ├── og.png │ ├── orange.png │ ├── phone.png │ ├── purple.png │ ├── showcase-1.png │ └── showcase-2.png └── r │ ├── card-demo.json │ ├── card.json │ ├── cursor.json │ ├── discord-presence.json │ ├── discord.json │ ├── github-demo.json │ └── github.json ├── registry.json ├── registry └── v3cn │ ├── card │ ├── card-demo.tsx │ └── card.tsx │ ├── cursor │ └── cursor.tsx │ ├── discord │ └── discord.tsx │ └── github │ ├── github-demo.tsx │ └── github.tsx ├── src ├── app │ ├── docs │ │ ├── cli │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── card │ │ │ │ └── page.tsx │ │ │ ├── cursor │ │ │ │ └── page.tsx │ │ │ ├── discord │ │ │ │ └── page.tsx │ │ │ └── github-graph │ │ │ │ └── page.tsx │ │ ├── installation │ │ │ └── page.tsx │ │ ├── introduction │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ ├── page.tsx │ ├── robots.ts │ └── sitemap.ts ├── components │ ├── Card.tsx │ ├── Cursor.tsx │ ├── Footer.tsx │ ├── Logo.svg.tsx │ ├── bread-crumb.tsx │ ├── command-menu.tsx │ ├── custom-sidebar.tsx │ ├── demo-ui │ │ ├── card │ │ │ ├── code.tsx │ │ │ ├── demo.tsx │ │ │ └── installation.tsx │ │ ├── cursor │ │ │ ├── code.tsx │ │ │ ├── demo.tsx │ │ │ └── installation.tsx │ │ ├── discord │ │ │ ├── code.tsx │ │ │ ├── demo.tsx │ │ │ └── installation.tsx │ │ └── github-graph │ │ │ ├── code.tsx │ │ │ ├── demo.tsx │ │ │ └── installation.tsx │ ├── feedback.tsx │ ├── heading.tsx │ ├── install-tab.tsx │ ├── installation-tabs.tsx │ ├── landing │ │ ├── Background.tsx │ │ ├── HeroContent.tsx │ │ ├── LogoBadge.tsx │ │ ├── ScrollableCards.tsx │ │ ├── card.tsx │ │ ├── examples.tsx │ │ ├── hero.tsx │ │ ├── how-it-works.tsx │ │ ├── index.ts │ │ ├── landing-footer.tsx │ │ ├── magnetic-wrapper.tsx │ │ └── navbar.tsx │ ├── navigation-menu.tsx │ ├── open-v0.tsx │ ├── pqoqubbw │ │ ├── book-text.tsx │ │ ├── clock.tsx │ │ ├── download.tsx │ │ ├── moon.tsx │ │ └── search.tsx │ ├── prop.tsx │ ├── provider.tsx │ ├── section-wrapper.tsx │ ├── sidebar-wrapper.tsx │ ├── terminal.tsx │ ├── theme-provider.tsx │ ├── toggle-theme.tsx │ ├── tweet.tsx │ └── ui │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── card-spotlight.tsx │ │ ├── card.tsx │ │ ├── code-block.tsx │ │ ├── code-snippet.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── discord.tsx │ │ ├── github.tsx │ │ ├── input.tsx │ │ ├── package-manager-tabs.tsx │ │ ├── prop-table.tsx │ │ ├── scroll-area.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── steps.tsx │ │ └── tooltip.tsx ├── hooks │ ├── use-lenis.ts │ └── use-mobile.tsx ├── lib │ └── utils.ts ├── types │ └── types.ts └── utils │ ├── cn.ts │ └── constant.ts ├── tailwind.config.ts ├── theme.config.jsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/.prettierrc -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | opennext.js.org 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/components.json -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/dockerfile -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icons/arrow-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/icons/arrow-black.svg -------------------------------------------------------------------------------- /public/icons/arrow-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/icons/arrow-purple.svg -------------------------------------------------------------------------------- /public/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/icons/arrow-up.svg -------------------------------------------------------------------------------- /public/icons/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/icons/docs.svg -------------------------------------------------------------------------------- /public/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/icons/star.svg -------------------------------------------------------------------------------- /public/image/V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/V.png -------------------------------------------------------------------------------- /public/image/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/iphone.png -------------------------------------------------------------------------------- /public/image/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/logo.webp -------------------------------------------------------------------------------- /public/image/mockup-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/mockup-2.png -------------------------------------------------------------------------------- /public/image/mockup-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/mockup-3.png -------------------------------------------------------------------------------- /public/image/mockup.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/mockup.jpeg -------------------------------------------------------------------------------- /public/image/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/noise.png -------------------------------------------------------------------------------- /public/image/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/og.png -------------------------------------------------------------------------------- /public/image/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/orange.png -------------------------------------------------------------------------------- /public/image/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/phone.png -------------------------------------------------------------------------------- /public/image/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/purple.png -------------------------------------------------------------------------------- /public/image/showcase-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/showcase-1.png -------------------------------------------------------------------------------- /public/image/showcase-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/image/showcase-2.png -------------------------------------------------------------------------------- /public/r/card-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/r/card-demo.json -------------------------------------------------------------------------------- /public/r/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/r/card.json -------------------------------------------------------------------------------- /public/r/cursor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/r/cursor.json -------------------------------------------------------------------------------- /public/r/discord-presence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/r/discord-presence.json -------------------------------------------------------------------------------- /public/r/discord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/r/discord.json -------------------------------------------------------------------------------- /public/r/github-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/r/github-demo.json -------------------------------------------------------------------------------- /public/r/github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/public/r/github.json -------------------------------------------------------------------------------- /registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/registry.json -------------------------------------------------------------------------------- /registry/v3cn/card/card-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/registry/v3cn/card/card-demo.tsx -------------------------------------------------------------------------------- /registry/v3cn/card/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/registry/v3cn/card/card.tsx -------------------------------------------------------------------------------- /registry/v3cn/cursor/cursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/registry/v3cn/cursor/cursor.tsx -------------------------------------------------------------------------------- /registry/v3cn/discord/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/registry/v3cn/discord/discord.tsx -------------------------------------------------------------------------------- /registry/v3cn/github/github-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/registry/v3cn/github/github-demo.tsx -------------------------------------------------------------------------------- /registry/v3cn/github/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/registry/v3cn/github/github.tsx -------------------------------------------------------------------------------- /src/app/docs/cli/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/cli/page.tsx -------------------------------------------------------------------------------- /src/app/docs/components/card/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/components/card/page.tsx -------------------------------------------------------------------------------- /src/app/docs/components/cursor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/components/cursor/page.tsx -------------------------------------------------------------------------------- /src/app/docs/components/discord/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/components/discord/page.tsx -------------------------------------------------------------------------------- /src/app/docs/components/github-graph/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/components/github-graph/page.tsx -------------------------------------------------------------------------------- /src/app/docs/installation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/installation/page.tsx -------------------------------------------------------------------------------- /src/app/docs/introduction/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/introduction/page.tsx -------------------------------------------------------------------------------- /src/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/layout.tsx -------------------------------------------------------------------------------- /src/app/docs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/docs/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/Cursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/Cursor.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Logo.svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/Logo.svg.tsx -------------------------------------------------------------------------------- /src/components/bread-crumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/bread-crumb.tsx -------------------------------------------------------------------------------- /src/components/command-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/command-menu.tsx -------------------------------------------------------------------------------- /src/components/custom-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/custom-sidebar.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/card/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/card/code.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/card/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/card/demo.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/card/installation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/card/installation.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/cursor/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/cursor/code.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/cursor/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/cursor/demo.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/cursor/installation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/cursor/installation.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/discord/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/discord/code.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/discord/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/discord/demo.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/discord/installation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/discord/installation.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/github-graph/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/github-graph/code.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/github-graph/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/github-graph/demo.tsx -------------------------------------------------------------------------------- /src/components/demo-ui/github-graph/installation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/demo-ui/github-graph/installation.tsx -------------------------------------------------------------------------------- /src/components/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/feedback.tsx -------------------------------------------------------------------------------- /src/components/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/heading.tsx -------------------------------------------------------------------------------- /src/components/install-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/install-tab.tsx -------------------------------------------------------------------------------- /src/components/installation-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/installation-tabs.tsx -------------------------------------------------------------------------------- /src/components/landing/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/Background.tsx -------------------------------------------------------------------------------- /src/components/landing/HeroContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/HeroContent.tsx -------------------------------------------------------------------------------- /src/components/landing/LogoBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/LogoBadge.tsx -------------------------------------------------------------------------------- /src/components/landing/ScrollableCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/ScrollableCards.tsx -------------------------------------------------------------------------------- /src/components/landing/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/card.tsx -------------------------------------------------------------------------------- /src/components/landing/examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/examples.tsx -------------------------------------------------------------------------------- /src/components/landing/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/hero.tsx -------------------------------------------------------------------------------- /src/components/landing/how-it-works.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/how-it-works.tsx -------------------------------------------------------------------------------- /src/components/landing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/index.ts -------------------------------------------------------------------------------- /src/components/landing/landing-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/landing-footer.tsx -------------------------------------------------------------------------------- /src/components/landing/magnetic-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/magnetic-wrapper.tsx -------------------------------------------------------------------------------- /src/components/landing/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/landing/navbar.tsx -------------------------------------------------------------------------------- /src/components/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/open-v0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/open-v0.tsx -------------------------------------------------------------------------------- /src/components/pqoqubbw/book-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/pqoqubbw/book-text.tsx -------------------------------------------------------------------------------- /src/components/pqoqubbw/clock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/pqoqubbw/clock.tsx -------------------------------------------------------------------------------- /src/components/pqoqubbw/download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/pqoqubbw/download.tsx -------------------------------------------------------------------------------- /src/components/pqoqubbw/moon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/pqoqubbw/moon.tsx -------------------------------------------------------------------------------- /src/components/pqoqubbw/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/pqoqubbw/search.tsx -------------------------------------------------------------------------------- /src/components/prop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/prop.tsx -------------------------------------------------------------------------------- /src/components/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/provider.tsx -------------------------------------------------------------------------------- /src/components/section-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/section-wrapper.tsx -------------------------------------------------------------------------------- /src/components/sidebar-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/sidebar-wrapper.tsx -------------------------------------------------------------------------------- /src/components/terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/terminal.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/toggle-theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/toggle-theme.tsx -------------------------------------------------------------------------------- /src/components/tweet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/tweet.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card-spotlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/card-spotlight.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/code-block.tsx -------------------------------------------------------------------------------- /src/components/ui/code-snippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/code-snippet.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/discord.tsx -------------------------------------------------------------------------------- /src/components/ui/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/github.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/package-manager-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/package-manager-tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/prop-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/prop-table.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/steps.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/hooks/use-lenis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/hooks/use-lenis.ts -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/types/types.ts -------------------------------------------------------------------------------- /src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/utils/cn.ts -------------------------------------------------------------------------------- /src/utils/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/src/utils/constant.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /theme.config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/theme.config.jsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/v3cn-docs/HEAD/tsconfig.json --------------------------------------------------------------------------------