27 lines
672 B
React
27 lines
672 B
React
|
|
import React from "react";
|
||
|
|
import "./i18n"; // Import i18n configuration
|
||
|
|
import Navbar from "./Components/Nav/Navbar";
|
||
|
|
import Home from "./Components/Sections/Home/Home";
|
||
|
|
import Services from "./Components/Sections/Services/Services";
|
||
|
|
import About from "./Components/Sections/About/About";
|
||
|
|
import Contact from "./Components/Sections/Contact/Contact";
|
||
|
|
import ImagePreloader from "./Components/ImagePreloader";
|
||
|
|
import "./App.css";
|
||
|
|
|
||
|
|
function App() {
|
||
|
|
return (
|
||
|
|
<ImagePreloader>
|
||
|
|
<div className="App">
|
||
|
|
<Navbar />
|
||
|
|
<Home />
|
||
|
|
<Services />
|
||
|
|
<About />
|
||
|
|
<Contact />
|
||
|
|
</div>
|
||
|
|
</ImagePreloader>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default App;
|
||
|
|
//test
|