diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f16cedb2..2460bc6b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -82,7 +82,7 @@ export default function RootLayout({ >
-

Reframe

+ Reframe
diff --git a/src/components/PresetSelector.tsx b/src/components/PresetSelector.tsx index fd129ab2..d71390fa 100644 --- a/src/components/PresetSelector.tsx +++ b/src/components/PresetSelector.tsx @@ -54,6 +54,7 @@ const QUICK_ACTIONS = [ preset: "vertical-9-16", label: "Reels", platform: "Instagram", + dimensions: "1080 × 1920 — 9:16 Portrait", icon: ( @@ -64,6 +65,7 @@ const QUICK_ACTIONS = [ preset: "vertical-9-16", label: "TikTok", platform: "TikTok", + dimensions: "1080 × 1920 — 9:16 Portrait", icon: ( @@ -74,6 +76,7 @@ const QUICK_ACTIONS = [ preset: "vertical-9-16", label: "Short", platform: "YouTube", + dimensions: "1080 × 1920 — 9:16 Portrait", icon: ( @@ -84,6 +87,7 @@ const QUICK_ACTIONS = [ preset: "landscape-16-9", label: "YouTube", platform: "YouTube", + dimensions: "1920 × 1080 — 16:9 Landscape", icon: ( @@ -94,6 +98,7 @@ const QUICK_ACTIONS = [ preset: "twitter-hd", label: "Twitter/X", platform: "Twitter", + dimensions: "1920 × 1080 — 16:9 Landscape", icon: ( @@ -142,7 +147,7 @@ export default function PresetSelector({ recipe, onChange }: Props) {
{/* Quick-action row */}
- {QUICK_ACTIONS.map(({ preset, label, platform, icon }) => { + {QUICK_ACTIONS.map(({ preset, label, platform, dimensions, icon }) => { const isActive = recipe.preset === preset; return (