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

View File

@ -0,0 +1,15 @@
import React from 'react';
import PageTitle from './PageTitle';
import IntroSection from './IntroSection';
import ContentSection from './ContentSection';
const SampleGuidelinePage = () => {
return (
<div className="page-content">
<PageTitle />
<IntroSection />
<ContentSection />
</div>
);
};
export default SampleGuidelinePage;