Engineering Blog

How I Built a Complete Website for My iOS App in One Hour Using Claude Code

March 29, 2026 8 min read Viongen Team

The Challenge: Ship a Website Before the App Launches

We had just finished building AI Video Dubbing Studio — an iOS app that lets you dub, narrate, subtitle, and voice-change any video using AI. The app was ready for the App Store. What wasn't ready? A marketing website.

We needed a production-grade site — not a placeholder. Something with a real design system, responsive layouts, SEO structured data, AWS cloud infrastructure, and multiple landing pages optimized for search. The kind of thing that would normally take a design agency a week and a developer another week to build.

Instead, we opened a terminal, launched Claude Code, and had everything live in about an hour.

This is exactly how we did it.


What Is Claude Code?

Claude Code is Anthropic's CLI tool for agentic coding. You run it in your terminal. You describe what you want in plain English. Claude reads your codebase, writes code, runs commands, and manages files — all through a natural conversation.

Think of it as pair programming with an AI that can actually touch your filesystem, run your build tools, and deploy your code. No copy-pasting from a chat window. No "here's what you should do" suggestions. It just does the work.

Key Concept

Skills are specialized instruction sets you can add to Claude Code. They give Claude deep expertise in specific domains — frontend design, Terraform, SEO, deployment. When you activate a skill, Claude doesn't just write generic code. It follows an opinionated, production-tested methodology.

The Process: Five Conversations, One Live Website

Here's the exact workflow we followed. Every step was a conversation in the terminal — no Figma, no mockups, no switching between tools.

1

Activated the Frontend Design Skill

Claude Code supports skills — think of them as expert personas. We activated the frontend-design skill, which makes Claude think like a senior designer: choosing distinctive fonts, building cohesive color systems, adding scroll animations, and avoiding the generic "AI slop" aesthetic.

The instruction was simple:

claude
> Build a marketing website for my iOS app "AI Video Dubbing Studio".
  It's a video dubbing app with 4 modes: Voice Changer, Dubbing Engine,
  Subtitle Studio, and Auto Narrate. Use a cinematic dark theme.
  The domain is viongen.com.

That's it. From that single prompt, Claude chose Syne for headings and Figtree for body text, created a cinematic dark color palette with violet-to-cyan gradients, built a film grain texture overlay, and generated the complete index.html, styles.css, and script.js with scroll animations, a floating language marquee, and responsive breakpoints.

2

Iterated on Design Through Conversation

Building a website isn't a one-shot task. We went back and forth with Claude just like you would with a human designer:

Every instruction was natural language. No line numbers, no file paths, no "find and replace" commands. Just describe the problem and Claude solves it.

3

Built AWS Infrastructure with Terraform

A marketing site needs real infrastructure. We asked Claude to set up the hosting stack:

> Set up AWS hosting for viongen.com. I want S3 + CloudFront with HTTPS,
  Route 53 DNS, and ACM certificate. Use Terraform so it's reproducible.

Claude generated a complete website.tf file with:

It also created a deploy.sh script that uploads files with correct MIME types and cache headers, then invalidates the CloudFront cache. One command to deploy everything.

4

Added SEO and Search Console Verification

We told Claude to optimize the site for search engines. It added:

When we shared a screenshot of the Google Search Console verification page, Claude extracted the verification string and added the DNS record — all from a single instruction.

5

Created Dedicated SEO Landing Pages

For long-tail keyword coverage, we asked Claude to create separate landing pages for each AI mode — each with its own targeted keywords, unique meta descriptions, and Schema.org data:

> Create separate pages for each AI mode — voice changer, dubbing engine,
  subtitle studio, auto narrate. Each should have different SEO keywords
  targeting iOS and iPhone users. Use the images we already have.

Claude spun up 4 agents in parallel — one for each landing page — and generated them simultaneously. Each page has unique keyword targeting, its own Schema.org SoftwareApplication, cross-links to the other modes, and shared CSS from the main stylesheet. No duplicated design code.

Voice Changer mode screenshot Dubbing Engine mode screenshot Subtitle Studio mode screenshot Auto Narrate mode screenshot

What We Ended Up With

7 Live Pages
2,500+ Lines of Code
6 Schema.org Types
~1hr Total Build Time

Here's everything that's live on viongen.com right now:

  1. Homepage — cinematic marketing page with feature grid, voice showcase, stats bar, pricing, and App Store CTA
  2. How It Works — step-by-step visual guide with HowTo schema
  3. Voice Changer — SEO landing page targeting "ai voice changer ios"
  4. Dubbing Engine — SEO landing page targeting "ai dubbing app iphone"
  5. Subtitle Studio — SEO landing page targeting "ai subtitle generator ios"
  6. Auto Narrate — SEO landing page targeting "ai narration app iphone"
  7. This Blog Post — because why not build the blog with Claude Code too?

Plus: AWS infrastructure (Terraform), automated deploy script, sitemap.xml, robots.txt, Google Search Console verification, and responsive design across all breakpoints.


How to Do This Yourself: A Quick Guide

1. Install Claude Code

npm install -g @anthropic-ai/claude-code

Or download the desktop app for Mac or Windows. It also works as a VS Code and JetBrains extension.

2. Add the Frontend Design Skill

Skills give Claude specialized knowledge. The frontend-design skill makes it think like a senior designer — distinctive typography, cohesive color systems, thoughtful animations, and no generic templates.

You can add skills through Claude Code's settings or by adding a CLAUDE.md file to your project with instructions.

3. Start with a Clear Brief

The more context you give upfront, the better the first pass. Include:

4. Iterate Like You're Talking to a Designer

Don't try to get everything perfect in one prompt. The power of Claude Code is the conversation:

Each instruction builds on the previous work. Claude remembers the full context of your project.

5. Ask for Infrastructure Too

Claude Code isn't just for frontend. Ask it to write Terraform, deploy scripts, set up DNS records, configure CDN caching rules, or generate sitemaps. It runs commands in your terminal — so it can aws s3 cp, terraform apply, or git push right in the same conversation.

Pro Tip

When Claude Code creates multiple independent pages, it can launch parallel agents — separate processes that work on different files simultaneously. Our 4 SEO landing pages were generated in parallel, cutting the time to a fraction of what sequential work would take.


What We Learned


Try It Yourself

If you're an indie developer, a startup founder, or anyone with an app that needs a website — you don't need to hire an agency or spend a week in Webflow. Open your terminal, describe what you want, and let Claude Code build it.

The website you're reading this on is proof that it works.

Download AI Video Dubbing Studio

Dub any video in 67 languages with 70+ AI voices. Free on iPhone and iPad.

Download on the App Store

Share This Story

LinkedIn & Medium

#ClaudeCode #Anthropic #AIWebDevelopment #BuildWithAI #IndieHacker #iOSDeveloper #WebDevelopment #AITools #FrontendDesign #Terraform #AWS #CloudFront #SEO #StartupTools #NoCodeToLowCode #AppMarketing #DeveloperProductivity #AIForDevelopers #ShipFaster #WebDesign #AICoding #TechBlog #SoftwareEngineering #MobileDev #AppStore

Twitter / X

#ClaudeCode #BuildWithAI #IndieHacker #iOSDev #WebDev #AITools #Anthropic #Terraform #AWS #SEO #ShipFaster #AICoding #FrontendDesign #AppMarketing #DevTools

Sample Social Post (copy & paste)

I built a full 7-page marketing website for my iOS app in about an hour — using just Claude Code in my terminal.

No Figma. No templates. No agency.

Cinematic dark design, AWS infrastructure (S3 + CloudFront + Route 53), Terraform IaC, SEO with Schema.org, 4 dedicated landing pages, Google Search Console — all from natural language conversations.

The secret? Claude Code's frontend-design skill turns it from "generic AI output" into genuinely designed, production-grade work.

Full breakdown of the process, the prompts we used, and how you can do it yourself:

https://viongen.com/blog.html