26 lines
733 B
TypeScript
26 lines
733 B
TypeScript
import { Hero } from '@/components/hero/Hero';
|
|
import { Services } from '@/components/sections/Services';
|
|
import { DataFlow } from '@/components/sections/DataFlow';
|
|
import { Stack } from '@/components/sections/Stack';
|
|
import { Expertise } from '@/components/sections/Expertise';
|
|
import { Portfolio } from '@/components/sections/Portfolio';
|
|
import { Blog } from '@/components/sections/Blog';
|
|
import { Contact } from '@/components/sections/Contact';
|
|
import { Footer } from '@/components/sections/Footer';
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<Services />
|
|
<DataFlow />
|
|
<Stack />
|
|
<Expertise />
|
|
<Portfolio />
|
|
<Blog />
|
|
<Contact />
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|