feat: redesign home page with new hero and layout

- Replaced abstract aurora background with hero section featuring image background and call-to-action
- Reorganized page sections with new components (HomeHostingDark, HomeBenefits, StackSectionLight)
- Changed layout background from #FAFAFA to white and removed conditional aurora rendering
This commit is contained in:
2025-11-06 14:06:44 +01:00
parent db92f1271e
commit b1c59a9b5a
5 changed files with 112 additions and 124 deletions

View File

@@ -1,15 +1,11 @@
import { Outlet, useLocation } from 'react-router-dom'
import { Outlet } from 'react-router-dom'
import { Footer } from './Footer'
import { Header } from './Header'
import { HomeAurora } from '../pages/home/HomeAurora'
export function Layout() {
const location = useLocation()
const isHomePage = location.pathname === '/'
return (
<div className="bg-[#FAFAFA] antialiased relative" style={{ fontFamily: 'var(--font-inter)' }}>
{isHomePage && <HomeAurora />}
<div className="bg-[white] antialiased relative" style={{ fontFamily: 'var(--font-inter)' }}>
<div className="relative z-10">
<Header />
<main>