Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
391 changes: 197 additions & 194 deletions app/en/services/client.tsx

Large diffs are not rendered by default.

16 changes: 13 additions & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import { Metadata } from 'next';
import { generatePageMetadata } from '@/lib/metadata';
import dynamic from 'next/dynamic';
import ImmersiveCloudVisualization from '@/components/immersive-cloud-visualization';
import { AuroraBackground } from '@/components/ui/aurora-background';

// Critical components - load immediately
import EnhancedHeader from '@/components/enhanced-header-fixed';
import Hero from '@/components/hero';
import Footer from '@/components/footer';
import PolishLanguageWrapper from '@/components/PolishLanguageWrapper';
import { GlowingEffect } from '@/components/ui/glowing-effect';

// Cloud visualization loaded lazily inside the component itself

Expand Down Expand Up @@ -53,15 +54,24 @@ export default function Home() {
return (
<PolishLanguageWrapper>
<main className="relative">
<ImmersiveCloudVisualization />
<GlowingEffect glow={true} disabled={false} borderWidth={1} />
<EnhancedHeader />
<Hero />
<AuroraBackground>
<Hero />
</AuroraBackground>
<GlowingEffect glow={true} disabled={false} borderWidth={1} />
<EnhancedServices />
<GlowingEffect glow={true} disabled={false} borderWidth={1} />
<EnhancedAbout />
<GlowingEffect glow={true} disabled={false} borderWidth={1} />
<TeamSection />
<GlowingEffect glow={true} disabled={false} borderWidth={1} />
<EnhancedProjects />
<GlowingEffect glow={true} disabled={false} borderWidth={1} />
<FAQSection />
<GlowingEffect glow={true} disabled={false} borderWidth={1} />
<EnhancedContact />
<GlowingEffect glow={true} disabled={false} borderWidth={1} />
<Footer />
</main>
</PolishLanguageWrapper>
Expand Down
325 changes: 164 additions & 161 deletions app/services/ai-ml/client.tsx

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion app/services/ai-ml/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Metadata } from 'next';
import { generatePageMetadata } from '@/lib/metadata';
import AIMachineLearningClient from './client';
import { AuroraBackground } from '@/components/ui/aurora-background';

export const metadata: Metadata = generatePageMetadata(
'/services/ai-ml',
Expand All @@ -12,5 +13,9 @@ export const metadata: Metadata = generatePageMetadata(


export default function AIMachineLearningPage() {
return <AIMachineLearningClient />;
return (
<AuroraBackground className="aurora-purple">
<AIMachineLearningClient />
</AuroraBackground>
);
}
373 changes: 188 additions & 185 deletions app/services/app-development/page.tsx

Large diffs are not rendered by default.

409 changes: 197 additions & 212 deletions app/services/client.tsx

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion app/services/cloud-solutions/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Metadata } from 'next';
import { generatePageMetadata } from '@/lib/metadata';
import CloudSolutionsClient from './client';
import { AuroraBackground } from '@/components/ui/aurora-background';

export const metadata: Metadata = generatePageMetadata(
'/services/cloud-solutions',
Expand All @@ -10,5 +11,9 @@ export const metadata: Metadata = generatePageMetadata(
);

export default function CloudSolutionsPage() {
return <CloudSolutionsClient />;
return (
<AuroraBackground className="aurora-blue">
<CloudSolutionsClient />
</AuroraBackground>
);
}
Loading
Loading