26 lines
673 B
TypeScript
26 lines
673 B
TypeScript
import { createRoute } from '@tanstack/react-router';
|
|
import { rootRoute } from './__root';
|
|
import { Hero } from '../components/Hero';
|
|
import { PackagesSection } from '../components/PackagesSection';
|
|
import { ProcessSection } from '../components/ProcessSection';
|
|
import { AboutSection } from '../components/AboutSection';
|
|
import { ContactSection } from '../components/ContactSection';
|
|
|
|
function IndexPage() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<PackagesSection />
|
|
<ProcessSection />
|
|
<AboutSection />
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export const indexRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/',
|
|
component: IndexPage,
|
|
});
|