diff --git a/src/App.js b/src/App.js index 5fcd6dd..312db45 100644 --- a/src/App.js +++ b/src/App.js @@ -1,20 +1,16 @@ // src/App.js import React from 'react'; -import Header from './components/Header'; // Ensure this import is correct +import Header from './components/Header'; // Ensure these paths are correct import MainSection1 from './components/MainSection1'; import MainSection2 from './components/MainSection2'; import MainSection3 from './components/MainSection3'; import MainSection4 from './components/MainSection4'; import MainSection5 from './components/MainSection5'; - + +import 'bootstrap/dist/css/bootstrap.min.css'; // Import Bootstrap once in your entry point function App() { return ( - -
@@ -23,7 +19,6 @@ function App() {
- ); }