import type React from 'react'; import { generateIconUrl } from '../../utils/resourceUrl.js'; interface OnboardingPageProps { onLogin: () => void; } export const OnboardingPage: React.FC = ({ onLogin }) => { const iconUri = generateIconUrl('icon.png'); return (
Qwen Code Logo

Welcome to Qwen Code

Qwen Code helps you understand, navigate, and transform your codebase with AI assistance.

{/*

Get Started

  • Understand complex codebases faster
  • Navigate with AI-powered suggestions
  • Transform code with confidence
*/} {/*

By logging in, you agree to the Terms of Service and Privacy Policy.

*/}
); };