Compare commits

...

4 Commits

Author SHA1 Message Date
kudinDmitriyUp
afe0547db3 Bob AI: add the company logo to the header and the hero section 2026-07-01 02:49:58 +00:00
9612dbbfd9 Merge version_7_1782874029168 into main
Merge version_7_1782874029168 into main
2026-07-01 02:47:24 +00:00
bbf9bd173e Update src/pages/HomePage/sections/Hero.tsx 2026-07-01 02:47:21 +00:00
5606be2780 Merge version_6_1782873701366 into main
Merge version_6_1782873701366 into main
2026-07-01 02:43:10 +00:00
2 changed files with 3 additions and 4 deletions

View File

@@ -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);

View File

@@ -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={{