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() {
return (
<div className="">
<>
<AnimatedSection>
<ComputeHero />
</AnimatedSection>
@@ -43,6 +43,6 @@ export default function ComputePage() {
<AnimatedSection>
<CallToAction />
</AnimatedSection>
</div>
</>
)
}