feat: replace literal decorations with AbstractBore and AbstractTrench
Former-commit-id: 4f7c5fcc7203aa4a36aabd8ffc13cf9f28a0f77a
This commit is contained in:
@@ -3,9 +3,8 @@ import Image from 'next/image';
|
||||
import Reveal from '@/components/Reveal';
|
||||
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';
|
||||
import { AbstractBore } from '@/components/ui/decorations/AbstractBore';
|
||||
import { AbstractTrench } from '@/components/ui/decorations/AbstractTrench';
|
||||
|
||||
export interface HeroSectionProps {
|
||||
title: string;
|
||||
@@ -73,14 +72,10 @@ export const HeroSection: React.FC<HeroSectionProps> = (props) => {
|
||||
)}
|
||||
</div>
|
||||
</Container>
|
||||
{/* Decorative: large abstract drill bit spinning slowly in background */}
|
||||
<div className="absolute top-1/2 -translate-y-1/2 -right-48 md:-right-64 pointer-events-none opacity-[0.03]">
|
||||
<DrillBitSpinner size={800} duration={20} glow={false} />
|
||||
</div>
|
||||
{/* Decorative: abstract HDD bore trajectory */}
|
||||
<DrillOrbit side="right" />
|
||||
{/* Organic wave divider — displaced earth strata */}
|
||||
<DrillTeeth position="bottom" fill="var(--color-primary-dark)" />
|
||||
{/* Minimalist Abstract Drilling (HDD) */}
|
||||
<AbstractBore className="top-1/3 -translate-y-1/2 opacity-60" />
|
||||
{/* Minimalist Abstract Trenching */}
|
||||
<AbstractTrench className="bottom-0 opacity-60" />
|
||||
</section>
|
||||
</Reveal>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user