Content page storybook added

This commit is contained in:
adilallo
2025-09-12 14:17:41 -06:00
parent ea023d5ec6
commit 8daea70cb8
10 changed files with 447 additions and 357 deletions
+12 -1
View File
@@ -34,7 +34,7 @@ export default {
},
variant: {
control: { type: "select" },
options: ["centered", "left-aligned", "compact"],
options: ["centered", "left-aligned", "compact", "inverse"],
description: "Layout variant for the component",
},
onContactClick: {
@@ -76,3 +76,14 @@ export const Compact = {
onContactClick: (data) => console.log("Contact clicked:", data),
},
};
export const Inverse = {
args: {
title: "Still have questions?",
subtitle: "Get answers from an experienced organizer",
buttonText: "Ask an organizer",
buttonHref: "#contact",
variant: "inverse",
onContactClick: (data) => console.log("Contact clicked:", data),
},
};