import Footer from "../app/components/Footer"; export default { title: "Components/Footer", component: Footer, parameters: { layout: "fullscreen", }, tags: ["autodocs"], }; export const Default = { args: {}, }; export const WithContent = { render: () => (

Page Content

This is sample page content to show how the footer appears at the bottom.

Section 1

Example content here...

Section 2

Additional content here...

), }; export const ResponsiveView = { render: () => (
Footer Component
), };