16 lines
527 B
TypeScript
16 lines
527 B
TypeScript
import { TechnologyHero } from './components/TechnologyHero';
|
|
import { TechnologyArchitecture } from './components/TechnologyArchitecture';
|
|
import { TechnologyStack } from './components/TechnologyStack';
|
|
import { TechnologicalBenefits } from './components/TechnologicalBenefits';
|
|
|
|
export const TechnologyPage = () => {
|
|
return (
|
|
<div className="space-y-12 text-slate-100 lg:space-y-16">
|
|
<TechnologyHero />
|
|
<TechnologyStack />
|
|
<TechnologyArchitecture />
|
|
<TechnologicalBenefits />
|
|
</div>
|
|
);
|
|
};
|