Portfolio / src /App.jsx
Abhisingh-18's picture
Mirror of github.com/Abhisingh18/Portfolio
162b974 verified
Raw
History Blame Contribute Delete
858 Bytes
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;