你嘅 AI 一切輸出嘅基準。下次叫 AI 寫文案,貼呢份文件入 prompt 就得。
# 我的品牌聲音
## 品牌定位
[一句話講你是誰、幫到誰、解決咩問題]
例:我幫香港一人公司用 AI 將工作壓縮成原本 1/4。
## 語氣
- 直接、有溫度、不說廢話
- 不講官腔、不講技術 jargon
- 像同朋友傾偈
## 禁用字眼
- 不僅
- 然而
- 值得注意的是
- 此外
- [補你自己睇到就反感嘅字]
## 慣用結構
- Hook + 痛點 + 反差 + CTA
## 標誌性表達
- [你獨有的口頭禪、習慣語]
例:「真實案例」、「Edward 心法」
## 受眾
- 主要:[一句]
- 次要:[一句]
## 不適合的主題
- [你唔會講嘅嘢]
點擊複製模板
🖼️
Carousel HTML 模板
carousel-template.html
最簡 starter — 直接 fork 改用,配 Puppeteer 一鍵 export 1080×1080 PNG。
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<title>My Carousel</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700;900&family=Noto+Serif+TC:wght@900&display=swap');
* { margin:0; padding:0; box-sizing:border-box; }
body { background:#111; font-family:'Noto Sans TC',sans-serif; }
.slide {
width:1080px; height:1080px;
background:linear-gradient(160deg,#0a0a1a,#1b1b2f);
color:#fff; padding:72px;
display:flex; flex-direction:column;
}
.title {
font-family:'Noto Serif TC',serif;
font-size:120px; font-weight:900;
line-height:1.05; margin-top:auto;
}
.title .hi {
background:linear-gradient(135deg,#f0c040,#d97734);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}
.sub { font-size:36px; color:#ccc; margin-top:24px; }
</style>
</head>
<body>
<div class="slide">
<div class="title">主標題<br><span class="hi">Highlight 字</span></div>
<div class="sub">副標一句講清楚個 promise</div>
</div>
</body>
</html>
點擊複製模板