import Header from "../app/components/Header"; import HomeHeader from "../app/components/HomeHeader"; import Footer from "../app/components/Footer"; export default { title: "Layout/Complete Pages", parameters: { layout: "fullscreen", }, tags: ["autodocs"], }; export const RegularPage = { render: () => (

Regular Page Layout

This demonstrates a typical page layout using the regular Header component.

Content Section 1

This is where example page content would go.

Content Section 2

Additional content sections can be added here.

), }; export const HomePage = { render: () => (

Welcome to CommunityRule

This demonstrates the home page layout using the special HomeHeader component with a dark gradient background.

Feature 1

Description of the first main feature.

Feature 2

Description of the second main feature.

), }; export const ComponentComparison = { render: () => (

Header vs HomeHeader Comparison

Regular Header

Used throughout the app with solid background and standard navigation.

Home Header

Special header for home page with transparent background and HeaderTab styling.

), };