# Creating a complete SvelteKit website structure with all necessary files import os import json # Create project structure project_structure = { "internpro-website": { "src": { "lib": { "components": { "Header.svelte": "", "Footer.svelte": "", "Hero.svelte": "", "Problem.svelte": "", "Solution.svelte": "", "Process.svelte": "", "Validation.svelte": "", "CTA.svelte": "", "ContactForm.svelte": "", }, "images": {}, "styles": { "global.css": "" } }, "routes": { "+page.svelte": "", "+layout.svelte": "", "services": { "+page.svelte": "" }, "about": { "+page.svelte": "" }, "contact": { "+page.svelte": "" } }, "app.html": "" }, "static": { "favicon.png": "", "robots.txt": "" }, "package.json": "", "svelte.config.js": "", "tailwind.config.js": "", "postcss.config.js": "", "README.md": "" } } # Content for files file_contents = { "internpro-website/src/app.html": """ %sveltekit.head%
%sveltekit.body%
""", "internpro-website/src/lib/styles/global.css": """@tailwind base; @tailwind components; @tailwind utilities; @layer base { html { font-family: 'Inter', sans-serif; scroll-behavior: smooth; } body { @apply text-gray-800; } h1, h2, h3, h4, h5, h6 { @apply font-bold text-gray-900; } } @layer components { .btn-primary { @apply bg-indigo-600 hover:bg-indigo-700 text-white font-semibold py-3 px-6 rounded-md transition duration-300 inline-block; } .btn-secondary { @apply bg-white hover:bg-gray-100 text-indigo-600 border border-indigo-600 font-semibold py-3 px-6 rounded-md transition duration-300 inline-block; } .section { @apply py-16 md:py-24; } .container { @apply px-4 mx-auto max-w-7xl; } .card { @apply bg-white rounded-xl shadow-md p-6 transition duration-300; } .card-hover { @apply hover:shadow-lg hover:-translate-y-1; } } """, "internpro-website/src/lib/components/Header.svelte": """
20 ? 'bg-white shadow-md py-3' : 'bg-transparent py-5'}`}> {#if menuOpen} {/if}
""", "internpro-website/src/lib/components/Footer.svelte": """ """, "internpro-website/src/lib/components/Hero.svelte": """

Premium Data Annotation at Unbeatable Prices

2,000+ US-based Masters & PhDs ready to deliver the high-quality data your AI models need.

""", "internpro-website/src/lib/components/Problem.svelte": """

AI Labs Are Starving for Quality Data

Winning in AI requires data no one else has. The difference between leading and lagging is now measured in data quality.

Public Data is Tapped Out

Foundational models have consumed the internet. The next 1-2% performance gain—the critical difference between leading and lagging—demands unique, high-fidelity data that simply isn't public.

Quality is the New Moat

Superior data quality (for RLHF, safety alignment, complex reasoning) is now the primary driver of model differentiation and capability. Mediocre data yields mediocre, unsafe AI.

Incumbent Annotators Can't Deliver

The status quo—offshore BPOs with low-skill workforces—consistently fails on the quality, nuance, security, and contextual understanding required by leading US-based AI labs.

""", "internpro-website/src/lib/components/Solution.svelte": """

Our Engine: Elite US Talent On Demand, Unbeatable Economics

We've built the platform and secured the talent. Now we're delivering the premium annotation capability that others can't touch.

Instantly Deployable Experts

Access our exclusive platform of 2,000+ vetted, US-based Masters & PhDs—ready today for complex AI data annotation tasks. No recruitment delays.

Specialized Talent, Superior Quality

Our annotators' advanced degrees and native US context deliver the high-fidelity data (RLHF, safety, reasoning) crucial for cutting-edge AI, surpassing incumbent capabilities.

Platform-Powered Efficiency

Our AI platform handles screening, matching, and workflow optimization, enabling rapid scaling and streamlined project delivery.

Exceptional Value Through Efficiency

Our unique compliant talent model and streamlined platform eliminates overhead, providing premium annotation results at a significantly more competitive price point.

2,000+

US-Based Masters & PhDs

99%

With Industry Experience

Immediate

Deployment Capability

""", "internpro-website/src/lib/components/Process.svelte": """

Our Platform for Premium Annotation Delivery

A seamless end-to-end process designed for quality, efficiency, and security.

Seamless Task Integration

Ingest annotation tasks and requirements directly from AI labs or labeling partners via API or web portal.

Flexible API integration with your existing systems or use our intuitive web portal for task submission.

Our proprietary matching algorithm ensures the perfect expert for each task based on skills, experience, and performance history.

AI-Powered Talent Matching

Our platform intelligently assigns tasks to the best-suited US Masters/PhDs based on proprietary screening data and tracked annotation performance history.

Flexible Tooling

Annotators work within the specific labeling tools required by the partner or customer, ensuring seamless integration.

We adapt to your preferred annotation tools and workflows, or provide our own state-of-the-art annotation environment.

Our multi-layered QA combines AI-assisted checks with expert human review, ensuring exceptional accuracy and consistency.

Rigorous QA Engine (AI + Human)

We execute multi-layered quality assurance using AI assistance and expert human review (leveraging our cost-effective talent pool). Supports consensus, expert review, etc.

Standardized Data Delivery

Ensure data formatting meets precise customer specifications before secure delivery via API or portal. Result: Higher quality, reliable data.

Receive data in your preferred format with comprehensive metadata and quality metrics for seamless integration into your AI pipeline.

""", "internpro-website/src/lib/components/Validation.svelte": """

Trusted by Leading AI Labs

Our premium annotation services are already making a difference for forward-thinking AI organizations.

"

InternPro.ai's annotation quality has been exceptional. Their US-based experts understand the nuances of our safety alignment tasks in ways offshore teams simply couldn't match.

JD
Dr. Jane Doe
Research Lead, AI Safety Lab
"

The speed at which InternPro.ai deployed their expert annotators was remarkable. We went from project kickoff to high-quality data delivery in days, not weeks or months.

MS
Michael Smith
CTO, AI Solutions Inc.
"

What impressed us most was the value. InternPro.ai delivered higher quality annotations than premium providers at a price point that was surprisingly competitive.

AL
Dr. Alex Lee
VP of Data, NextGen AI

Market Validation

AI Lab Validation

Secured LOI with leading AI Safety Research Lab specifically for our unique annotation capabilities (US-based experts, significantly reduced cost).

Partner Commitment

Active project scoping with major data labeling provider seeking access to our specialized talent pool.

Operational Readiness

2,000+ Vetted US Masters & PhDs actively engaged on platform – ready for immediate deployment.

Platform Validated

High engagement and satisfaction (99% recommend) ensures talent retention and quality focus for annotation tasks.

""", "internpro-website/src/lib/components/CTA.svelte": """

Ready to Elevate Your AI with Premium Data?

Join the AI labs using InternPro.ai to build the next generation of AI models with superior data quality.

Call Us

(415) 275-1211

Email Us

Fred@internpro.ai

Schedule a Call

Book a Consultation
""", "internpro-website/src/lib/components/ContactForm.svelte": """
{#if submitted}
Thank you for your message! We'll be in touch shortly.
{/if}
""", "internpro-website/src/routes/+layout.svelte": """