import HomeHeader from "../../app/components/navigation/HomeHeader";
export default {
title: "Components/Navigation/HomeHeader",
component: HomeHeader,
parameters: {
layout: "fullscreen",
docs: {
description: {
component:
"The home page header with transparent background, HeaderTab wrapper, and responsive behavior. Features active state highlighting for current page navigation.",
},
},
},
tags: ["autodocs"],
};
export const Default = {
args: {},
parameters: {
docs: {
description: {
story:
"Use the Viewport toolbar to see how the home header adapts to different screen sizes. The header has a transparent background and uses HeaderTab for the left section.",
},
},
},
};
// Story to show the home header in a realistic home page context
export const InHomePageContext = {
args: {},
render: () => (
Welcome to CommunityRule
This demonstrates how the home header looks in a realistic home page
context. The header maintains its transparent background and
responsive behavior.
{[1, 2, 3].map((i) => (
Feature {i}
This is example content to show how the home header integrates
with home page content.
))}
),
parameters: {
docs: {
description: {
story:
"The home header integrated into a full home page layout with gradient background to show the transparent header effect.",
},
},
},
};