Tools & Workflow

Webflow Portfolio Setup Guide

Build a professional, responsive portfolio in Webflow from scratch. CMS setup, responsive design, SEO, custom domain — the complete walkthrough for designers.

Nikki Kipple
Nikki Kipple
20 min readMar 2026

TL;DR

  • Best for: Designers who want full control without writing code
  • Cost: $23/month CMS plan recommended for portfolios
  • Learning curve: Medium — visual CSS editor, not drag-and-drop

Why Webflow for Portfolios

Webflow sits in a unique spot: it gives you the design control of a custom-coded site without making you write HTML and CSS by hand. For designers, that's a big deal. You can build exactly what you envision, not what a template allows.

The real advantages over simpler builders like Squarespace or Wix: Webflow outputs clean semantic HTML, gives you real CSS control (not simplified toggles), includes a proper CMS for managing project content, and generates responsive layouts that don't feel like afterthoughts. For a deeper look at how Webflow stacks up, our platform comparison guide breaks down all the options.

The trade-off is learning curve. Webflow is not drag-and-drop — it's a visual CSS editor. Every panel in the style sidebar maps directly to a CSS property. The typography section is font-family, font-size, and line-height. The spacing section is margin and padding. If you understand the box model and flexbox, you'll feel at home. If not, expect to spend time with Webflow University before things click.

There's also a less obvious benefit: building your portfolio in Webflow is itself a design exercise. The decisions you make about layout, typography, spacing, and interaction design are the exact skills hiring managers want to see. A well-built Webflow portfolio demonstrates competence in ways that a Squarespace template never can.

Webflow is ideal if you:

  • Want pixel-perfect control over your layout and spacing
  • Care about SEO and page performance
  • Have 4+ case studies and want them managed via CMS
  • Don't want to write code but understand CSS concepts
  • Want clean, exportable code as a bonus
  • Plan to update your portfolio regularly (CMS makes this painless)

Webflow is probably not for you if:

  • You need something up in an afternoon (try Squarespace)
  • You want a blog-heavy site (WordPress is better for that)
  • You have no interest in learning visual design tools
  • Budget is a hard constraint (Squarespace is cheaper)

What You'll Need Before You Start

Don't jump into Webflow before your content is ready. The number one reason designer portfolios stall in Webflow is building the container before having anything to put in it. You end up tweaking padding on an empty page for hours instead of doing the harder work of writing your case studies.

Get these ready first:

  • 4-6 case studies written. Not bullet points — actual narratives. Problem, process, solution, results. Each one should be 800-1500 words with supporting images. If you're stuck structuring them, our case study structure guide covers the framework, or try the Case Study Builder to draft one step by step.
  • Project images optimized. Hero images (1600×900px minimum), process shots, final mockups. All compressed to WebP where possible. A single uncompressed PNG can be 5MB — that's your entire page weight budget blown on one image.
  • Your bio and headshot. 2-3 sentences about who you are and what you do. A professional photo — not a crop from a group photo at brunch, not a Memoji, not your cat. You're asking people to hire you.
  • A sitemap sketched out. Home, About, Work (index), individual case studies, Contact. That's 5 page types, minimum. Start simple — you can always add a blog or resources section later.
  • A custom domain purchased. yourname.com via Namecheap, Google Domains, or Cloudflare. Don't launch on a .webflow.io subdomain. Sending a recruiter to yourname.webflow.io undermines your credibility as a designer who supposedly cares about details.
  • Typography decisions made. Pick 1-2 typefaces before you open Webflow. A display font for headings and a readable body font. Webflow has access to Google Fonts and lets you upload custom fonts. Our typography guide can help if you're undecided.

A note on timing: don't wait until everything is perfect to start building. Have at least 3 case studies written and 1 fully imaged before you begin. You can refine the remaining ones while you build the site structure. The danger is starting with zero content, not starting with incomplete content.

Setup and Site Structure

Start with a blank project — not a template. As a designer, your portfolio is your work. A template portfolio says “I can fill in blanks,” not “I can design.” The only exception: if you're a UX researcher or content strategist where visual design isn't your core skill — then a clean template is acceptable.

Step 1: Create your pages

In the Pages panel, create: Home, About, Work (this will become a CMS collection page — more below), Contact, and a 404 page. That's your starting structure.

Resist the urge to add a blog, testimonials page, or services section at launch. Each additional page is a page you need to design, populate, and maintain. Ship with the essentials, then expand based on what visitors actually want. Check your analytics after a month before adding anything.

Step 2: Set up your global styles

Before designing anything, define your design system in Webflow. This means creating reusable classes for your typography scale, spacing, and layout containers. Here's a minimal starting set:

  • heading-xl — H1, your largest heading
  • heading-lg — H2, section headings
  • heading-md — H3, sub-sections
  • body-text — Your default paragraph style
  • section-padding — Consistent vertical padding (80px desktop, 48px mobile)
  • container-default — Max-width container (1200px) with horizontal padding

Set these up first and apply them consistently. If you skip this step, you'll end up with 47 slightly different font sizes across your pages and spend hours hunting down inconsistencies.

Step 3: Build navigation

Create a Navbar component and immediately convert it to a Symbol (Webflow's reusable component system). Any change to a Symbol propagates across all pages — so you edit your nav once, not on every page individually.

Keep nav items to 4-5 max: Work, About, Contact, and maybe a Resume/CV link. Sticky navigation is fine on desktop but make sure it doesn't eat more than 60px of screen on mobile. The hamburger menu transition should be fast — no 800ms slide-in animation. People want to navigate, not watch your menu perform.

Step 4: Create your footer

Also a Symbol. Include: your email (linked), 2-3 social links (LinkedIn is essential, Dribbble/Behance optional), copyright year, and optionally a “Built in Webflow” note. Don't put your entire life story in the footer. It's a utility zone, not a biography.

Class Naming Strategy

This is where most Webflow beginners create technical debt that haunts them for months. Webflow's class system is powerful, but it requires discipline. Without a naming convention, you end up with classes like Div Block 47 and Text Block 12 scattered across your project.

The most widely used convention in the Webflow community is Client-First by Finsweet. You don't need to follow it religiously, but understanding the core principle helps: name classes by what they do, not what they are.

Good class names for a portfolio:

Layout classes

  • page-wrapper
  • section-hero
  • container-narrow
  • grid-projects

Component classes

  • project-card
  • project-card_image
  • project-card_title
  • nav_link

The underscore convention (component_element) keeps related classes grouped together in Webflow's style panel. When you start typing “project-card,” all related classes appear as suggestions.

One rule to live by: never use Webflow's combo classes as a crutch for poor planning. If you find yourself stacking 4-5 combo classes on a single element, your base class needs rethinking. Combo classes are for intentional variations (like button + is-secondary), not for patching inconsistencies.

Designing Your Homepage

Your homepage has one job: convince someone to click into a case study. Everything else is secondary. If a recruiter lands on your homepage and doesn't click into a project within 10 seconds, you've probably lost them.

The structure that works:

  1. 1. Hero section. Your name, your title (“Product Designer” not “Creative Visionary”), and optionally a one-line value prop. No paragraph — save the narrative for your About page. A strong hero image or featured project visual adds impact, but a clean typographic hero works just as well if your type choices are confident.
  2. 2. Project grid. 4-6 thumbnails, each linking to a full case study. Use Webflow's CMS Collection List to pull these dynamically. Consistent aspect ratios matter — mixed sizes create visual chaos. Hover states should reveal the project title and category. This is where the gallery layout pattern shines.
  3. 3. Brief about snippet. 2-3 sentences + a photo. Link to the full About page. This builds trust and personality without making people scroll past your life story to find your work. Something like: “I'm a product designer at [Company] focused on making complex tools feel simple. Previously at [Company]. Currently based in [City].”
  4. 4. Footer. Contact email, LinkedIn, copyright. Maybe a “Let's work together” link. That's it.

What to leave off the homepage: testimonial carousels (nobody reads them), a skills section with progress bars (please no), a services breakdown (you're not an agency), or an “Our Process” section (show process in case studies, not as marketing).

On interactions and animations: Webflow's interaction system is powerful and addictive. Resist the urge to animate everything. Subtle page-load fades, staggered card reveals, and smooth scroll are fine. Parallax backgrounds, rotating elements, and 3-second entrance animations are not. Here's the test: if the animation makes someone wait to see your work, cut it. If it makes your work more engaging to explore, keep it.

Using the CMS for Project Pages

This is where Webflow really separates itself from simpler builders. Instead of creating a separate static page for each project (which gets painful to maintain the moment you want to add project #7), you create one template that pulls content from a CMS collection. Add a new project = add a new CMS entry. The page builds itself.

If you've used WordPress or any other CMS, the concept is the same. The difference is that Webflow lets you design the template visually — no theme files, no PHP, no fighting with a page builder plugin.

Setting up your Projects collection — the fields you need:

  • Name (Plain text) — The project title. Webflow auto-generates the URL slug from this.
  • Slug (Auto-generated) — Clean URL: yoursite.com/work/project-name. Don't change slugs after publishing.
  • Thumbnail (Image) — For the project grid on your Work page. Keep consistent dimensions (e.g., 1200×900).
  • Hero Image (Image) — The large image at the top of the case study page. 1600×900 minimum.
  • Short Description (Plain text) — 1-2 sentences for the grid card overlay. “Redesigned the onboarding flow, reducing drop-off by 34%.”
  • Full Content (Rich text) — This is your case study body. Rich text supports headings, images, video embeds, and formatted text inline. This is where the bulk of your story lives.
  • Role (Plain text) — “Lead Product Designer” or “UX Research & Design.”
  • Timeline (Plain text) — “3 months, 2025.”
  • Tools (Plain text) — “Figma, Maze, Notion.”
  • Category (Option/Reference) — UX Design, Visual Design, Research, etc. Useful for filtering on the Work page.
  • Sort Order (Number) — A manual sort field so you control which projects appear first, independent of creation date.
  • Featured (Switch) — Toggle to mark 2-3 projects as featured for the homepage.
  • Live URL (Link) — Optional link to the live product, if applicable.

The CMS plan ($23/month) is worth it. Without CMS, you're manually building each project page — which defeats the purpose of using Webflow over hand-coding. The CMS makes adding, reordering, and updating projects trivial. You can build on the free plan (CMS works in the designer), but you'll need the paid plan to publish with CMS content.

Pro tip: create a “Draft” switch field on your collection. Set published projects to on, works-in-progress to off, and filter your Collection Lists to only show published items. This lets you stage content without it going live.

Building the Case Study Template

Your CMS collection template page is the single most important page in your Webflow project. Every case study uses this layout, so invest real time getting it right. A poorly designed template means every project page looks mediocre.

Recommended template structure (top to bottom):

  1. 1. Hero section — Full-width hero image bound to the CMS Hero Image field. Project title overlaid or below, depending on your style. Include the role, timeline, and tools as metadata below the title.
  2. 2. Project overview — A 2-3 sentence summary of what the project was. Think of it as the “elevator pitch” version. Readers decide here whether to keep scrolling.
  3. 3. Rich text body — Bound to your Full Content CMS field. This is your narrative — problem, research, ideation, solution, results. Style the rich text element carefully: set H2, H3, paragraph, image, blockquote, and list styles once, and every project inherits them.
  4. 4. Results/impact section — If your project has metrics, call them out visually. Large numbers with brief labels: “34% reduction in drop-off,” “2x increase in task completion.”
  5. 5. Next project link — Critical. When someone finishes reading a case study, give them an easy path to the next one. Use a CMS reference field or a Collection List with a limit of 1 to show the next project.

Rich text styling matters more than you think. The rich text block is where most of your case study content lives. Set generous line-height (1.6-1.8 for body text), comfortable max-width (680-720px), and good spacing between paragraphs and images. If the rich text feels cramped or hard to read, no amount of hero polish will save the page.

For a deeper look at what makes case studies effective beyond the template, our case study structure guide covers the content framework you should follow regardless of what platform you're building on.

Making It Responsive

Webflow's responsive system uses breakpoints: Desktop (default, 992px+), Tablet (768-991px), Mobile Landscape (480-767px), and Mobile Portrait (0-479px). Styles cascade down — what you set on Desktop applies to all smaller breakpoints unless overridden. You only need to change what breaks.

Our mobile portfolio design guide covers the UX principles. Here's the Webflow-specific implementation:

Responsive checklist by breakpoint:

Tablet (768px)

  • • Project grid: 3-col → 2-col
  • • Nav: consider collapsing to hamburger
  • • Reduce section padding from 80px to 56px
  • • H1 can stay desktop size or drop slightly

Mobile Landscape (480px)

  • • Project grid: 2-col → 1-col (or keep 2-col with smaller cards)
  • • Hamburger nav mandatory
  • • Reduce H1 size by 25-30%
  • • Section padding down to 40px

Mobile Portrait (0px)

  • • Project grid: single column
  • • Full-bleed images (edge to edge)
  • • Container padding: 20-24px horizontal
  • • Touch targets: minimum 44×44px for all buttons and links
  • • Hide decorative elements that add no value at small sizes

Critical: test on a real phone, not just Webflow's responsive preview. The preview is close but not identical to actual device rendering. Touch interactions, scroll momentum, font rendering, and especially fixed/sticky positioning all behave differently on real hardware. Publish your staging site and check it on your phone before showing anyone.

Image Optimization

Images are the single biggest factor in your portfolio's loading speed. A designer portfolio is inherently image-heavy — case study screenshots, process photos, hero images, mockups. Without optimization, your site can easily balloon past 10MB per page. Our image optimization guide covers the technical details in depth; here's the Webflow-specific workflow.

Before uploading to Webflow:

  • Resize first. Export at 2x your display size for retina, but no larger. If your case study images display at 720px wide, export at 1440px. Exporting at 3000px wastes bandwidth.
  • Use WebP format. WebP offers 25-35% smaller files than JPEG at equivalent quality. Most design tools (Figma, Photoshop) can export WebP natively. Use it for photos and screenshots. Keep PNG only for images that need transparency.
  • Compress aggressively. Run images through Squoosh (squoosh.app) or TinyPNG before uploading. Target under 200KB per image. Hero images can be 300-400KB if needed. If a single screenshot is over 500KB, compress it more.
  • Name files descriptively. Use project-name-user-flow-v2.webp, not Screenshot 2026-01-15.png. Webflow uses filenames in its CDN URLs, which helps SEO marginally.

Webflow's responsive images: Webflow automatically generates multiple sizes of uploaded images and serves the appropriate one via srcset. This only works for images placed with the Image element — not background images. For hero sections, use an Image element with object-fit rather than a background image when possible.

Lazy loading: Webflow supports native lazy loading. Enable it on images below the fold (anything not visible on initial page load). Don't lazy-load your hero image or above-the-fold project thumbnails — that creates a visible pop-in effect.

SEO Optimization

Webflow has excellent SEO tools built in — but you still need to use them. A surprising number of designer portfolios ship with default meta descriptions and missing alt text. For a full SEO walkthrough specific to portfolios, check our portfolio SEO checklist.

Webflow SEO essentials:

  • Page titles and meta descriptions. Set these in Page Settings for every single page. Your homepage title should include your name + “Portfolio” + your specialty: “Sarah Chen — Product Design Portfolio.” Meta descriptions should be 150-160 characters and tell someone what they'll find. Don't stuff keywords.
  • Open Graph images. Set a custom OG image for each page (1200×630px). This is what shows when someone shares your portfolio on LinkedIn, Slack, or Twitter. A branded OG image makes shared links look intentional instead of generic.
  • Alt text on every image. Webflow makes this easy in the image settings. Describe what's in the image: “User flow diagram showing 5-step checkout process” — not “screenshot.png” or “image of design.” Good alt text also helps portfolio accessibility.
  • Sitemap. Webflow auto-generates one at yoursite.com/sitemap.xml. Create a Google Search Console account and submit it. This tells Google about every page on your site and speeds up indexing.
  • 301 redirects. If you're migrating from another platform, set up redirects in Webflow's hosting settings. A redirect from your old URL structure to your new one preserves any existing search rankings and prevents broken links.
  • Clean URLs. Webflow generates clean URLs by default (yoursite.com/work/project-name). Don't change slugs after publishing — that breaks any existing links to that page.
  • Heading hierarchy. Use one H1 per page (your page title). Use H2 for major sections, H3 for sub-sections. Don't skip levels (H1 → H3). Screen readers and search engines use heading hierarchy to understand page structure.

Performance and Core Web Vitals

Google uses Core Web Vitals as a ranking signal, but for a portfolio, performance matters for a simpler reason: recruiters are impatient. If your site takes 4 seconds to load, they've already moved to the next candidate's portfolio.

Webflow handles much of the performance work for you — CDN hosting, automatic image srcset, minified code. But you can still tank your performance with poor decisions.

Performance killers to watch for:

  • Uncompressed images. The most common culprit by far. Compress everything before upload.
  • Too many custom fonts. Each font file adds 50-150KB. Stick to 2 typefaces maximum, and use font-display: swap so text renders while fonts load.
  • Heavy Lottie animations. Lottie files can be deceptively large. A single complex animation might be 500KB+. Use sparingly and keep files under 100KB.
  • Excessive interactions. Every Webflow interaction adds JavaScript. Page-load animations on 20+ elements create a noticeable execution cost.
  • Third-party scripts. Google Analytics is fine. Adding Hotjar, Intercom, a cookie banner, and three embedded videos on your homepage is not. Each script blocks or delays rendering.
  • Video backgrounds. A 30-second background video can be 5-20MB. If you must use video, keep it under 5 seconds, compress it aggressively, and use it on one page only.

Test regularly. Run PageSpeed Insights (pagespeed.web.dev) on your homepage and one case study page. Aim for 90+ on mobile. If you're below 80, you have optimization work to do. Webflow sites typically score 85-95 out of the box — if yours is lower, the problem is your content choices, not the platform.

Accessibility Essentials

Accessibility isn't just ethical — it's practical. Many recruiters and hiring managers use assistive technologies, browse on high-contrast settings, or navigate primarily with keyboards. A portfolio that breaks under these conditions sends a message about your attention to detail. For a comprehensive overview, our accessibility guide goes deeper.

Minimum accessibility checklist for Webflow portfolios:

  • Color contrast. Body text needs 4.5:1 contrast ratio against its background. Large headings need 3:1. Use WebAIM's contrast checker. That light-gray-on-white text you think looks elegant? It's probably failing.
  • Alt text on all images. Already covered in SEO — this serves both purposes.
  • Keyboard navigation. Tab through your entire site. Can you reach every link, button, and interactive element? Can you see which element is focused? Add visible focus styles if Webflow's defaults are too subtle.
  • Semantic HTML. Use Webflow's semantic tags: Section, Nav, Main, Footer, Article. Don't build your entire page out of Div Blocks. Screen readers use semantic elements to understand page structure.
  • Form labels. Every form input needs a visible label — not just placeholder text. Placeholder text disappears on focus, leaving users with no context about what the field is for.
  • Skip to content link. Add a visually hidden link at the top of your page that becomes visible on focus, letting keyboard users skip past the navigation.

Publishing and Custom Domain

Once your site is ready, publishing is straightforward. But “ready” doesn't mean perfect — it means your core content is in place, your responsive breakpoints work, and nothing is broken. You'll keep iterating after launch.

Pre-launch checklist:

  • All pages tested on mobile, tablet, and desktop (real devices, not just preview)
  • All links working (especially project links and email/contact links)
  • Images optimized and loading at reasonable speed
  • Favicon uploaded (Project Settings → Custom Code, or use the built-in favicon upload)
  • 404 page designed (recruiters will find it if they mistype a URL)
  • Google Analytics connected (GA4, via custom code in Project Settings)
  • Contact form tested — actually submit it and check you receive the email
  • Meta titles and descriptions set for every page
  • OG images set for at least the homepage and case study template
  • PageSpeed Insights score checked (aim for 85+ mobile)

Connecting your domain:

In Project Settings → Hosting → Custom Domains, add your domain. Webflow will give you DNS records to add at your domain registrar:

  • A record: Point your root domain (yourname.com) to Webflow's IP address
  • CNAME record: Point www.yourname.com to proxy-ssl.webflow.com
  • SSL: Automatic and free — Webflow provisions a Let's Encrypt certificate

Allow 24-48 hours for DNS propagation. Set up both the www and non-www versions, with one redirecting to the other (Webflow handles this in domain settings). Consistency matters for SEO.

After publishing: submit your sitemap to Google Search Console immediately. Don't wait for Google to “discover” your site organically — that can take weeks. Manual submission through GSC gets your pages indexed within days. Also share your portfolio URL on LinkedIn (the post will use your OG image and description).

Maintaining Your Portfolio

Your portfolio isn't a ship-and-forget project. The designers who get hired keep their portfolios current. The ones who don't end up sending recruiters to a site with “2023” in the copyright and a project from their internship as the featured piece.

Maintenance schedule:

  • Every new project: Add it to your CMS as soon as you can talk about it. Even if the case study isn't fully written, create the entry with a hero image and short description. You can flesh out the narrative later.
  • Every quarter: Review your project order. Your best, most recent work should be first. Move older or weaker projects down — or remove them entirely. 4 strong case studies beat 8 mixed ones.
  • Every 6 months: Update your About page. New role? New skills? New location? Refresh the copy. Check your bio for anything that's now outdated.
  • Every year: Reconsider your design itself. Design trends evolve, your skills evolve. A refresh doesn't mean a rebuild — maybe it's a new color palette, updated typography, or a better project grid layout.
  • Ongoing: Check your contact form periodically. Send yourself a test message. You'd be surprised how many portfolios have broken contact forms that nobody notices because... nobody can contact them.

Webflow makes maintenance easier than most platforms. CMS means adding or reordering projects is a 5-minute task, not a rebuild. Symbols mean updating your nav or footer propagates everywhere. Global styles mean a typography change applies site-wide. Use these features — they're the reason you chose Webflow.

Common Webflow Mistakes

Using a template for your design portfolio

Templates are fine for businesses and blogs. For a design portfolio, they signal that you can't design your own site. Start from scratch — the process of building it is itself a portfolio-worthy project. It's okay to study templates for patterns and inspiration, but don't ship one as your “design portfolio.”

Over-animating everything

Webflow's interaction builder is addictive. Suddenly every element fades, slides, scales, and rotates on scroll. The result: a portfolio that feels like a tech demo, not a professional showcase. Every animation should have a purpose — guiding attention, revealing content progressively, or providing interaction feedback. “Because I could” is not a purpose.

Ignoring the CMS

Building each project as a static page means you'll dread adding new work. You'll have to duplicate a page, manually update every field, and hope you don't break the layout. Set up the CMS from the start — even if you only have 3 projects. The marginal effort now saves exponential effort later.

Not testing on real devices

Webflow's responsive preview is helpful but not identical to real device behavior. Scroll momentum, touch targets, font rendering, sticky positioning, and especially hamburger menu interactions all feel different on real hardware. Always publish and test on an actual phone before sharing your portfolio link.

Too many custom fonts

Each custom font adds to page load time (50-150KB per font file). Stick to 1-2 typefaces maximum. If you're uploading custom fonts, make sure you have the web license and use WOFF2 format for best compression. Google Fonts load from a CDN, so they're slightly faster than custom uploads for common families.

Building in isolation

Don't spend 3 months perfecting your portfolio in private before showing anyone. Get the structure up, add 2-3 projects, and share it for design feedback early. Real feedback from real people catches issues you're blind to — whether that's confusing navigation, unclear case studies, or a color palette that doesn't work on their screen.

Messy class naming

Starting without a naming convention leads to a project full of “Div Block 47” and “Text Block 23.” Three months later you need to change your heading style and you can't figure out which class controls what. Invest 30 minutes in a naming strategy upfront. Future you will be genuinely grateful.

Webflow vs Alternatives

Quick comparison for the most common portfolio platforms. For a deeper breakdown with more options, see our full platform comparison.

Webflow vs Squarespace

Webflow: more control, better code output, steeper learning curve, $23/month for CMS. Squarespace: faster setup, less flexibility, $16/month, every site looks similar. Pick Webflow if you want to demonstrate design skill. Pick Squarespace if you need something up today and design control isn't your selling point.

Webflow vs Framer

Framer has gained serious ground — it's faster to prototype in, better for motion-heavy sites, and its component system is more flexible. Webflow has the edge in CMS maturity, SEO tools, and hosting reliability. For a detailed comparison, see our Framer tutorial. If your portfolio leans toward interaction design, consider Framer. If it's project-heavy with lots of case studies, Webflow's CMS is hard to beat.

Webflow vs Custom Code (Next.js, Gatsby, Astro)

Custom code gives unlimited control and can be free to host (Vercel, Netlify). But it requires JavaScript/React skills and takes significantly longer. Webflow is the middle ground: near-unlimited design control without writing code. If you can code and enjoy it, custom might be better. If you can't (or don't want to spend your time on it), Webflow is the best visual option available.

Webflow vs Adobe Portfolio

Adobe Portfolio comes free with Creative Cloud and can be set up in an hour. The trade-off: extremely limited customization, no CMS, basic SEO tools, and a design that screams “default template.” It's acceptable for students who need something up fast, but if you're job-hunting seriously, invest the time in Webflow or similar.

💬 Common Questions

Everything You Need to Know

Quick answers to help you get started

Share this resource

Nikki Kipple

Written by

Nikki Kipple

Product Designer & Design Instructor

Designer, educator, founder of The Crit. I've spent years teaching interaction design and reviewing hundreds of student portfolios. Good feedback shouldn't require being enrolled in my class — so I built a tool that gives it to everyone. Connect on LinkedIn →

Ready to put this into practice?

Upload your design, get specific fixes back in under 3 minutes. No fluff, no generic advice.

Get My Free Critique →

Get design tips in your inbox

Practical advice, no fluff. Unsubscribe anytime.