26 lines
670 B
JavaScript
26 lines
670 B
JavaScript
import React from 'react';
|
|
import TestimonialSection from './TestimonialSection';
|
|
import CallToActionSection from './CallToActionSection';
|
|
import FooterSection from './FooterSection';
|
|
|
|
const Layout = () => {
|
|
return (
|
|
<div className="footer_automatic_files">
|
|
<div className="layout_main_section">
|
|
<div className="layout_testimonial_section">
|
|
{/* <TestimonialSection /> */}
|
|
</div>
|
|
<div className="layout_call_to_action_section">
|
|
<CallToActionSection />
|
|
</div>
|
|
<div className="layout_footer_section">
|
|
<FooterSection />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|
|
|