Files
SlpSoftware/src/routes/index.tsx
T

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,
});