Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #53 #54

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixed #53
adab786 authored Aug 28, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 7168e284ffcf51e7740d7df41494f04e189b5c5a
19 changes: 11 additions & 8 deletions personal-portfolio/src/App.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { BrowserRouter as Router } from "react-router-dom"; // Import Router
import logo from './logo.svg';
import './App.css';
import 'bootstrap/dist/css/bootstrap.min.css';
@@ -10,14 +11,16 @@ import { Footer } from "./components/Footer";

function App() {
return (
<div className="App">
<NavBar />
<Banner />
<Skills />
<Projects />
<Contact />
<Footer />
</div>
<Router> {/* Wrap with Router */}
<div className="App">
<NavBar />
<Banner />
<Skills />
<Projects />
<Contact />
<Footer />
</div>
</Router>
);
}