refactor: remove unused FeaturedOn component from homepage

- Removed import and instance of FeaturedOn component from page.jsx
- Simplified homepage layout by removing redundant featured section
This commit is contained in:
2025-10-24 02:33:55 +02:00
parent 2d61bd5161
commit 0d24234bd1

View File

@@ -18,7 +18,6 @@ import Activities from '@/components/Activities'
import Boats from '@/components/Boats'
import Carousel from '@/components/Carousel'
import CnnVideo from '@/components/CnnVideo'
import { FeaturedOn } from '@/components/FeaturedOn'
export default function Home() {
@@ -27,7 +26,6 @@ export default function Home() {
<Header />
<main>
<Hero />
<FeaturedOn />
</main>
<Footer />
</>