first commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user