Initial commit: React frontend (SLP Software) + AIDLC workflow docs

Co-authored-by: Junie <junie@jetbrains.com>
This commit is contained in:
2026-07-20 00:19:44 +02:00
co-authored by Junie
commit e299f1c745
73 changed files with 7275 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
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,
});