24 lines
863 B
TypeScript
24 lines
863 B
TypeScript
import LandingAboutMeSection from '../components/landing/LandingAboutMeSection';
|
|
import ReasonsSection from '../components/landing/ReasonsSection';
|
|
import ExperienceSection from '../components/landing/ExperienceSection';
|
|
import WinningsSection from '../components/landing/WinningsSection';
|
|
import ProcessesSection from '../components/landing/ProcessesSection';
|
|
import ProjectsSection from '../components/sections/ProjectsSection';
|
|
import ReferencesSection from '../components/landing/ReferencesSection';
|
|
import ContactSection from '../components/sections/ContactSection';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<>
|
|
<LandingAboutMeSection />
|
|
<ReasonsSection />
|
|
<WinningsSection />
|
|
<ExperienceSection />
|
|
<ProcessesSection />
|
|
<ProjectsSection />
|
|
<ReferencesSection />
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|