style updates

This commit is contained in:
Emre
2025-10-11 11:17:38 +03:00
parent c0f08ad3fa
commit 9451d22494
28 changed files with 613 additions and 240 deletions

View File

@@ -2,6 +2,7 @@ import { TechnologyHero } from './components/TechnologyHero';
import { TechnologyArchitecture } from './components/TechnologyArchitecture';
import { TechnologyStack } from './components/TechnologyStack';
import { TechnologicalBenefits } from './components/TechnologicalBenefits';
import { MarketplaceCta } from './components/MarketplaceCta';
export const TechnologyPage = () => {
return (
@@ -10,6 +11,7 @@ export const TechnologyPage = () => {
<TechnologyStack />
<TechnologyArchitecture />
<TechnologicalBenefits />
<MarketplaceCta />
</div>
);
};