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 (
<>
>
);
}
export const indexRoute = createRoute({
getParentRoute: () => rootRoute,
path: '/',
component: IndexPage,
});