new pages created

This commit is contained in:
2025-12-06 00:56:15 +05:30
parent e87bdd45a1
commit 670db0c07a
52 changed files with 4761 additions and 278 deletions

25
app/(public)/ats/page.tsx Normal file
View File

@@ -0,0 +1,25 @@
import BenefitsSection from "./_components/Benefits";
import CtaSection from "./_components/CTA";
import FaqSection from "./_components/FAQ";
import FeaturesSection from "./_components/Features";
import HeroSection from "./_components/Hero";
import OverviewSection from "./_components/Overview";
import WorkflowSection from "./_components/WorkFlow";
// Main ATS Page Component
const ATSPage: React.FC = () => {
return (
<div className="min-h-screen bg-white">
<HeroSection />
<OverviewSection />
<BenefitsSection />
<FeaturesSection />
<WorkflowSection />
<FaqSection />
<CtaSection />
</div>
);
};
export default ATSPage;