premium_web_design

jerrar670/surf-website · updated Apr 19, 2026

$npx skills add https://github.com/jerrar670/surf-website --skill premium_web_design
0 commentsdiscussion
summary

This skill outlines the key elements required to create "wow" factor, premium web applications.

skill.md

Premium Web Design Principles

This skill outlines the key elements required to create "wow" factor, premium web applications.

1. Typography

  • Font Choice: Use modern, geometric sans-serifs (e.g., Inter, Outfit, Manrope) or elegant serifs for headings. Avoid default system fonts unless intentionally styled.
  • Hierarchy: Establish clear scale (h1 vs p). Use extreme contrast in size (huge headlines, small refined labels).
  • Spacing: Generous line-height (1.5-1.7 for body). tracking-tight for large headings to make them feel solid.

2. Color & Depth

  • Palette: Use a curated palette. Avoid pure black (#000000) or pure white (#FFFFFF) for backgrounds; use off-blacks (#0a0a0a) or soft creams (#fafafa).
  • Gradients: Use subtle, noise-textured gradients rather than flat linear ones.
  • Glassmorphism: Use backdrop-filter blur for overlays and navbars.
    .glass {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    

3. Motion & Interaction (Framer Motion)

  • Micro-interactions: Buttons should scale or glow on hover.
  • Page Transitions: Smooth fade/slide between routes.
  • Scroll Animations: Elements should fade up or reveal as they enter the viewport.
    <motion.div
      initial={{ opacity: 0, y: 20 }}
      whileInView={{ opacity: 1, y: 0 }}
      viewport={{ once: true }}
      transition={{ duration: 0.6 }}
    >
    

4. Layout & Rhythm

  • Grid: Adhere to a strict grid system but break it intentionally for interest.
  • Whitespace: Use whitespace (padding/margin) aggressively. "Premium" means space to breathe.
  • Bento Grids: Use boxy, card-based layouts for feature showcases.

5. Imagery

  • Quality: Use high-res, optimized images (WebP).
  • Styling: Rounded corners (e.g., rounded-2xl or rounded-3xl for that modern feel).
  • Parallax: Subtle scroll parallax on background images adds depth.

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.571 reviews
  • Neel Gupta· Dec 20, 2024

    Solid pick for teams standardizing on skills: premium_web_design is focused, and the summary matches what you get after install.

  • Mateo Khan· Dec 16, 2024

    Keeps context tight: premium_web_design is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Diego Malhotra· Dec 12, 2024

    We added premium_web_design from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Anaya Khan· Dec 12, 2024

    Solid pick for teams standardizing on skills: premium_web_design is focused, and the summary matches what you get after install.

  • Soo Brown· Dec 4, 2024

    Registry listing for premium_web_design matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Ava Mehta· Dec 4, 2024

    I recommend premium_web_design for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Ava Perez· Nov 23, 2024

    Useful defaults in premium_web_design — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Anaya Reddy· Nov 23, 2024

    premium_web_design reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Nikhil Rahman· Nov 19, 2024

    premium_web_design has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Nikhil Srinivasan· Nov 11, 2024

    premium_web_design fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 71

1 / 8