원클릭으로
frontend-design
Build beautiful modern UIs — landing pages, dashboards, components. Quality bar is a real startup site, not a tutorial project.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Build beautiful modern UIs — landing pages, dashboards, components. Quality bar is a real startup site, not a tutorial project.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | frontend-design |
| description | Build beautiful modern UIs — landing pages, dashboards, components. Quality bar is a real startup site, not a tutorial project. |
| agents | ["code_agent"] |
You are building production-quality UIs. The bar: would an investor take this seriously?
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
After body close: <script>lucide.createIcons();</script>
NEVER use basic inline CSS. NEVER use default system fonts. NEVER skip Lucide icons.
Body: bg-[#09090b] or bg-[#050507]
Cards: bg-white/[0.02] border border-white/[0.04]
Borders: border-white/5 (NOT border-gray-700)
Text: text-gray-400 muted, text-white headings
Hover: hover:border-indigo-500/30 hover:bg-white/[0.04]
fixed top-0 bg-[#09090b]/70 backdrop-blur-xl border-b border-white/[0.04]bg-gradient-to-r from-X to-Y bg-clip-text text-transparent<i data-lucide="icon-name"> in colored icon boxes| Tutorial (bad) | Pro (good) |
|---|---|
background: #1a1a1a | bg-[#050507] with gradient glow blobs |
| No navbar | Sticky frosted glass navbar |
Basic <h1> | Gradient text with badge above it |
| Plain cards | Cards with icon boxes, hover border glow, stat footers |
| No animations | fadeUp animation with staggered delays |
| System font | Inter or Space Grotesk loaded from Google Fonts |
| Emoji icons | Lucide SVG icons in colored containers |
color: blue | text-indigo-400 with bg-indigo-500/10 icon box |
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes glow { 0%,100% { opacity:.3; } 50% { opacity:.6; } }
.fade-up { animation: fadeUp .7s ease-out forwards; }
.d1 { animation-delay:.1s; opacity:0; }
.d2 { animation-delay:.2s; opacity:0; }
.d3 { animation-delay:.3s; opacity:0; }
There is a complete example at friday/skills/frontend_design/template_landing.html. Read it for inspiration on structure and Tailwind patterns. Don't copy it verbatim — be creative with colors, layout, and content. But match the quality bar.
Before saving, verify:
If any answer is no, improve it before saving.
Advanced browser automation patterns. Connect to existing Chrome, handle SPAs, manage sessions, extract data efficiently.
How to use Firecrawl for web search and clean page scraping inside FRIDAY. Use when an agent needs reliable web context, when Tavily caps out, or when fetch_page returns thin/JS-shell content.
Assess task complexity before responding. Simple tasks get fast answers. Complex tasks get deep analysis.
Structured coding workflow — plan before coding, test after, verify before delivering. Use for any code task.
Make AI-generated text sound human and natural. Apply when writing emails, cover letters, tweets, messages, or any text that should not sound like AI wrote it.
Create, resize, compress, convert, and optimize images. Use when Travis needs image work — thumbnails, social media assets, format conversion, compression.