- Changed cube gradient colors from cyan to blue for better visual consistency - Updated glow effects and shadows to use blue (rgba(59, 130, 246)) instead of cyan - Modified background aura gradients in StackSection for enhanced depth perception - Replaced HomeFeaturesDark component with new HomeSlider in HomePage layout - Added isolate property to StackSection to prevent gradient bleeding - Enhanced background layer in StackSection with additional
41 lines
928 B
TypeScript
41 lines
928 B
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
import { HomeAurora } from './HomeAurora'
|
|
import { HomeFeaturesDark } from './HomeFeaturesDark'
|
|
import { StackSectionLight } from './StackSection'
|
|
import { WorldMap } from './HomeGlobe'
|
|
import { HomeBenefits } from './HomeBenefits'
|
|
import { CallToAction } from './CallToAction'
|
|
import { HomeSlider } from './HomeSlider'
|
|
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div>
|
|
<AnimatedSection>
|
|
<HomeAurora />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection id="next-section">
|
|
<WorldMap />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<StackSectionLight />
|
|
</AnimatedSection>
|
|
|
|
|
|
<AnimatedSection>
|
|
<HomeSlider />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<HomeBenefits />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CallToAction />
|
|
</AnimatedSection>
|
|
</div>
|
|
)
|
|
}
|