diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 90d33a9..0ed6046 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -6,12 +6,11 @@ import MetricsSection from './HomePage/sections/Metrics';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
-import HeroSection from './HomePage/sections/Hero';
-export default function HomePage(): React.JSX.Element {
+
+import HeroNewSection from './HomePage/sections/HeroNew';export default function HomePage(): React.JSX.Element {
return (
<>
-
@@ -19,6 +18,7 @@ export default function HomePage(): React.JSX.Element {
+
>
);
}
\ No newline at end of file
diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx
deleted file mode 100644
index 22e1b74..0000000
--- a/src/pages/HomePage/sections/Hero.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-// Created by add_section_from_catalog (HeroBillboard).
-
-import React from 'react';
-import HeroBillboard from '@/components/sections/hero/HeroBillboard';
-
-export default function HeroSection(): React.JSX.Element {
- return (
-
-
-
- );
-}
diff --git a/src/pages/HomePage/sections/HeroNew.tsx b/src/pages/HomePage/sections/HeroNew.tsx
new file mode 100644
index 0000000..1638269
--- /dev/null
+++ b/src/pages/HomePage/sections/HeroNew.tsx
@@ -0,0 +1,20 @@
+// Created by add_section_from_catalog (HeroBillboardFeatures).
+
+import React from 'react';
+import HeroBillboardFeatures from '@/components/sections/hero/HeroBillboardFeatures';
+
+export default function HeroNewSection(): React.JSX.Element {
+ return (
+
+
+
+ );
+}