{badge}
@@ -176,6 +177,8 @@ export function CompetenceBentoGrid(props: CompetenceBentoGridProps) {
{/* Decorative: abstract earth strata / excavation layers */}
+ {/* Organic wave divider */}
+
);
}
diff --git a/components/blocks/HeroSection.tsx b/components/blocks/HeroSection.tsx
index ae47b59e0..142f33a9b 100644
--- a/components/blocks/HeroSection.tsx
+++ b/components/blocks/HeroSection.tsx
@@ -5,6 +5,7 @@ import { Badge, Container, Heading } from '@/components/ui';
import { Button } from '@/components/ui/Button';
import { DrillOrbit } from '@/components/ui/decorations/DrillOrbit';
import { DrillBitSpinner } from '@/components/ui/decorations/DrillBitSpinner';
+import { DrillTeeth } from '@/components/ui/decorations/DrillTeeth';
export interface HeroSectionProps {
title: string;
@@ -78,6 +79,8 @@ export const HeroSection: React.FC = (props) => {
{/* Decorative: abstract HDD bore trajectory */}
+ {/* Organic wave divider — displaced earth strata */}
+
);
diff --git a/components/blocks/HeroVideo.tsx b/components/blocks/HeroVideo.tsx
index e3d33fd35..fd781aa07 100644
--- a/components/blocks/HeroVideo.tsx
+++ b/components/blocks/HeroVideo.tsx
@@ -4,6 +4,7 @@ import { Button } from '@/components/ui/Button';
import Image from 'next/image';
import { motion, AnimatePresence } from 'framer-motion';
import { useState, useEffect } from 'react';
+import { DrillTeeth } from '@/components/ui/decorations/DrillTeeth';
interface HeroVideoProps {
data?: any;
@@ -108,6 +109,8 @@ export function HeroVideo(props: HeroVideoProps) {