diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index cd44eb3..793b2d8 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,20 +1,85 @@ import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeaturesStatisticsCards from '@/components/sections/features/FeaturesStatisticsCards'; -import HeroBrand from '@/components/sections/hero/HeroBrand'; import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; import TeamListCards from '@/components/sections/team/TeamListCards'; import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards'; -import { Laptop, LineChart, TrendingUp, Users } from "lucide-react"; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import { Laptop, LineChart, TrendingUp, Users } from 'lucide-react'; +import SectionErrorBoundary from '@/components/ui/SectionErrorBoundary'; +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'; + +// ── Inlined from src/components/sections/hero/HeroBrand.tsx (was ) +// You can now edit InlinedHeroBrand freely below — it is a local copy and +// will not affect any other page that imports the original HeroBrand. +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 InlinedHeroBrand = ({ + brand, + description, + primaryButton, + secondaryButton, + imageSrc, + videoSrc, +}: HeroBrandProps) => { + return ( +
+ + + +
+ ); +}; export default function HomePage() { return ( <>
-