Files
REXNT/src/App.jsx

32 lines
946 B
React
Raw Normal View History

2025-12-23 17:09:40 +03:00
import React from "react";
2025-12-23 22:00:31 +03:00
import "./i18n";
2025-12-23 17:09:40 +03:00
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";
2025-12-23 22:00:31 +03:00
import Footer from "./Components/Nav/Footer";
2025-12-23 17:09:40 +03:00
import "./App.css";
2025-12-23 22:00:31 +03:00
const App = () => {
2025-12-23 17:09:40 +03:00
return (
<ImagePreloader>
2025-12-23 22:00:31 +03:00
<div className="min-h-screen bg-white dark:bg-gray-900 text-gray-900 dark:text-white transition-colors duration-300">
<div className="flex flex-col min-h-screen">
<Navbar />
<main className="flex-grow">
<Home />
<Services />
<About />
<Contact />
</main>
<Footer />
</div>
2025-12-23 17:09:40 +03:00
</div>
</ImagePreloader>
);
2025-12-23 22:00:31 +03:00
};
2025-12-23 17:09:40 +03:00
2025-12-23 22:00:31 +03:00
export default App;