Docker config

This commit is contained in:
mukesh13
2025-06-16 15:53:12 +05:30
commit da3df17022
411 changed files with 24117 additions and 0 deletions

20
app/page.tsx Normal file
View File

@ -0,0 +1,20 @@
import PageLayout from "./components/Layout/PageLayout";
import NGSSection from "./components/About/NGSSection";
import ResearchSection from "./components/Research/ResearchSection.jsx";
import CertificationsSection from "./components/Certifications/CertificationsSection.jsx";
import HeroSection from "./Hero/HeroSection.jsx";
import CTASection from './components/CTA/CTASection';
import ClientsSection from './components/Clients/ClientsSection';
export default function Home() {
return (
<PageLayout fixedHeader={true}>
<HeroSection />
<NGSSection />
<ResearchSection />
<CertificationsSection />
<CTASection />
<ClientsSection />
</PageLayout>
);
}