import type { Meta, StoryObj } from '@storybook/react'; import Box from '@mui/material/Box'; import VerifiedOutlinedIcon from '@mui/icons-material/VerifiedOutlined'; import AccessTimeIcon from '@mui/icons-material/AccessTime'; import SearchIcon from '@mui/icons-material/Search'; import SupportAgentOutlinedIcon from '@mui/icons-material/SupportAgentOutlined'; import { HomePage } from './HomePage'; import { Navigation } from '../../organisms/Navigation'; import { Footer } from '../../organisms/Footer'; // ─── Shared helpers ────────────────────────────────────────────────────────── const FALogo = () => ( ); const FALogoInverse = () => ( ); const nav = ( } items={[ { label: 'Locations', children: [ { label: 'Melbourne', href: '/locations/melbourne' }, { label: 'Brisbane', href: '/locations/brisbane' }, { label: 'Sydney', href: '/locations/sydney' }, { label: 'South Coast NSW', href: '/locations/south-coast-nsw' }, { label: 'Central Coast NSW', href: '/locations/central-coast-nsw' }, ], }, { label: 'FAQ', href: '/faq' }, { label: 'Contact Us', href: '/contact' }, { label: 'Log in', href: '/login' }, ]} /> ); const footer = (