File size: 858 Bytes
162b974 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | import Navbar from "./components/Navbar";
import Hero from "./components/Hero";
import About from "./components/About";
import Experience from "./components/Experience";
import Freelancing from "./components/Freelancing";
import Projects from "./components/Projects";
import Achievements from "./components/Achievements";
import Skills from "./components/Skills";
import Services from "./components/Services";
import Contact from "./components/Contact";
import Footer from "./components/Footer";
function App() {
return (
<div className="bg-[#030014] text-white min-h-screen">
<Navbar />
<Hero />
<Experience />
<Freelancing />
<Achievements />
<Projects />
<Services />
<Skills />
<About />
<Contact />
<Footer />
</div>
);
}
export default App;
|