diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx
index 4ed4bd7..3b690f0 100644
--- a/src/pages/HomePage/sections/Hero.tsx
+++ b/src/pages/HomePage/sections/Hero.tsx
@@ -1,18 +1,74 @@
-// Created by add_section_from_catalog (HeroBrand).
+/* eslint-disable */
+// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
+import Button from "@/components/ui/Button";
+import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot";
+import TextAnimation from "@/components/ui/TextAnimation";
+import ImageOrVideo from "@/components/ui/ImageOrVideo";
+import AutoFillText from "@/components/ui/AutoFillText";
-import React from 'react';
-import HeroBrand from '@/components/sections/hero/HeroBrand';
+const primaryButton = {
+ href: "/contact",
+ text: "Get Your Free Audit"
+};
+const secondaryButton = {
+ text: "Our Services",
+ href: "/services"
+};
-export default function HeroSection(): React.JSX.Element {
+type HeroBrandProps = {
+ brand: string;
+ description: string;
+ primaryButton: { text: string; href: string };
+ secondaryButton: { text: string; href: string };
+} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
+
+const HeroInline = () => {
+ return (
+