gitextract_lpxxmf0u/ ├── .gitignore ├── .npmrc ├── .vscode/ │ ├── settings.json │ └── tailwind.json ├── LICENSE ├── README-en.md ├── README.md ├── components.json ├── eslint.config.js ├── next-env.d.ts ├── next-sitemap.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── src/ │ ├── app/ │ │ ├── [lang]/ │ │ │ ├── [[...mdxPath]]/ │ │ │ │ └── page.tsx │ │ │ ├── _components/ │ │ │ │ ├── ThemeProvider.tsx │ │ │ │ └── ThirdPartyScripts.tsx │ │ │ ├── layout.tsx │ │ │ ├── not-found.ts │ │ │ └── styles/ │ │ │ ├── index.css │ │ │ └── overrides.css │ │ └── _dictionaries/ │ │ └── get-dictionary.ts │ ├── components/ │ │ ├── AIDemoLanding/ │ │ │ ├── EntryCard.tsx │ │ │ ├── index.tsx │ │ │ └── interactions.tsx │ │ ├── CustomFooter/ │ │ │ └── index.tsx │ │ ├── HomepageHero/ │ │ │ ├── Section.tsx │ │ │ ├── Setup.tsx │ │ │ ├── SetupHero.module.css │ │ │ └── index.tsx │ │ ├── MotionWrapper/ │ │ │ ├── FadeIn.tsx │ │ │ ├── Flash.tsx │ │ │ └── index.ts │ │ ├── PanelParticles/ │ │ │ └── index.tsx │ │ ├── ScrollProgressBar/ │ │ │ └── index.tsx │ │ ├── ThemeSwitcher/ │ │ │ └── index.tsx │ │ ├── TitleBadge/ │ │ │ └── index.tsx │ │ ├── auth/ │ │ │ ├── login-form.client.tsx │ │ │ └── login-form.tsx │ │ └── ui/ │ │ ├── accordion.tsx │ │ ├── alert.tsx │ │ ├── button.tsx │ │ ├── card-hover-effect.tsx │ │ ├── card.tsx │ │ ├── flip-words.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── link-preview.tsx │ │ ├── loader.tsx │ │ ├── separator.tsx │ │ ├── sonner.tsx │ │ └── toggle.tsx │ ├── content/ │ │ ├── en/ │ │ │ ├── _meta.tsx │ │ │ ├── ai-demo.mdx │ │ │ ├── docs/ │ │ │ │ ├── _meta.tsx │ │ │ │ ├── examples/ │ │ │ │ │ ├── test-tailwind.mdx │ │ │ │ │ └── theme-update.mdx │ │ │ │ ├── i18n.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ ├── introduction.mdx │ │ │ ├── login.mdx │ │ │ └── upgrade.mdx │ │ └── zh/ │ │ ├── _meta.tsx │ │ ├── ai-demo.mdx │ │ ├── docs/ │ │ │ ├── _meta.tsx │ │ │ ├── examples/ │ │ │ │ ├── test-tailwind.mdx │ │ │ │ └── theme-update.mdx │ │ │ ├── i18n.mdx │ │ │ └── index.mdx │ │ ├── index.mdx │ │ ├── introduction.mdx │ │ ├── login.mdx │ │ └── upgrade.mdx │ ├── hooks/ │ │ ├── index.ts │ │ ├── useBreakpoint.ts │ │ ├── useLocale.ts │ │ └── useServerLocale.ts │ ├── i18n/ │ │ ├── ai-demo.ts │ │ ├── en.ts │ │ ├── index.ts │ │ └── zh.ts │ ├── lib/ │ │ └── utils.ts │ ├── mdx-components.ts │ ├── proxy.ts │ └── widgets/ │ ├── auth-button.tsx │ ├── locale-toggle.tsx │ ├── mobile-menu-auth.tsx │ ├── navbar-extras.tsx │ └── theme-toggle.tsx └── tsconfig.json