Compare commits
4 Commits
version_6_
...
version_8_
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
afe0547db3 | ||
| 9612dbbfd9 | |||
| bbf9bd173e | |||
| 5606be2780 |
@@ -6,6 +6,7 @@ import Button from "@/components/ui/Button";
|
||||
|
||||
interface NavbarDropdownProps {
|
||||
logo: string;
|
||||
logoImageSrc?: string;
|
||||
navItems: { name: string; href: string }[];
|
||||
ctaButton: { text: string; href: string };
|
||||
}
|
||||
@@ -19,7 +20,7 @@ const handleNavClick = (e: React.MouseEvent<HTMLAnchorElement>, href: string, on
|
||||
onClose?.();
|
||||
};
|
||||
|
||||
const NavbarDropdown = ({ logo, navItems, ctaButton }: NavbarDropdownProps) => {
|
||||
const NavbarDropdown = ({ logo, logoImageSrc, navItems, ctaButton }: NavbarDropdownProps) => {
|
||||
const [menuOpen, setMenuOpen] = useState(false);
|
||||
const navRef = useRef<HTMLElement>(null);
|
||||
|
||||
|
||||
@@ -11,9 +11,7 @@ export default function HeroSection(): React.JSX.Element {
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBillboardBrand
|
||||
brand="Build Opportunity. Deliver Excellence."
|
||||
description="ABC Group is an independent Australian family-owned business delivering trusted recruitment, trade, property, and travel solutions for over 15 years.
|
||||
|
||||
With God nothing shall be impossible. – Luke 1:37"
|
||||
description="ABC Group is an independent Australian family-owned business delivering trusted recruitment, trade, property, and travel solutions for over 15 years. "
|
||||
primaryButton={{
|
||||
text: "Our Companies", href: "#companies"}}
|
||||
secondaryButton={{
|
||||
|
||||
Reference in New Issue
Block a user