Initial commit REXNT project

This commit is contained in:
Rahaf
2025-12-23 17:09:40 +03:00
commit 914078190f
45 changed files with 7797 additions and 0 deletions

26
src/App.jsx Normal file
View File

@ -0,0 +1,26 @@
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