refactor: replace wrapper div with React fragment in ComputePage

This commit is contained in:
2025-11-08 01:11:43 +01:00
parent b723f889cb
commit 2865b1e1fd

View File

@@ -11,7 +11,7 @@ import { ComputeCapabilitiesNew } from './ComputeCapabilitiesNew'
export default function ComputePage() { export default function ComputePage() {
return ( return (
<div className=""> <>
<AnimatedSection> <AnimatedSection>
<ComputeHero /> <ComputeHero />
</AnimatedSection> </AnimatedSection>
@@ -43,6 +43,6 @@ export default function ComputePage() {
<AnimatedSection> <AnimatedSection>
<CallToAction /> <CallToAction />
</AnimatedSection> </AnimatedSection>
</div> </>
) )
} }