gatsby config change

This commit is contained in:
Dhanraj
2024-07-07 15:17:04 +05:30
parent b3a05ac415
commit e9d9438670
2 changed files with 7 additions and 5 deletions

View File

@ -11,7 +11,9 @@ import Services from 'components/Saas/Services';
import About from 'components/Saas/About';
import Testimonials from 'components/Saas/Testimonials';
import Pricing from 'components/Saas/Pricing';
import Footer from 'components/software/Footer';
// import Footer from 'components/software/Footer';
import Footer from '../../components/software/Footer'; // Adjust the relative path as needed
const PageServices5 = () => {
const navbarRef = useRef(null);
@ -31,7 +33,7 @@ const PageServices5 = () => {
{/* <Testimonials /> */}
{/* <Pricing /> */}
</main>
<Footer noWave />
<Footer />
</MainLayout>
)
}