---
// ContactHeader - A simple header component with phone number and social media links
// This is different from the main navigation Header component
import { Icon } from 'astro-icon/components';
import { SITE } from 'astrowind:config';
interface Link {
text?: string;
href?: string;
ariaLabel?: string;
icon?: string;
}
interface Links {
text?: string;
href?: string;
links?: Array;
}
export interface ContactHeaderProps {
links?: Array;
actions?: Array;
isSticky?: boolean;
showRssFeed?: boolean;
showToggleTheme?: boolean;
position?: string;
}
const { isSticky = false } = Astro.props;
---