Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/build

# misc
.env
.DS_Store
.env.local
.env.development.local
Expand Down
33 changes: 33 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-scroll": "^1.9.3",
"web-vitals": "^2.1.4"
},
"scripts": {
Expand Down
33 changes: 23 additions & 10 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,37 @@
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
import Header from "./Components/Header";
import Footer from "./Components/Footer";
import Home from "./Pages/Home";
import About from "./Pages/About";
import Contact from "./Pages/Contact";
import Projects from "./Pages/Projects";
import Technologies from "./Pages/Technologies";
import Awards from "./Pages/Awards";

function App() {
return (
<Router>
<div>
<Header />
<Routes>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/contact" element={<Contact />} />
<Route path="/projects" element={<Projects />} />
<Route path="/technologies" element={<Technologies />} />
</Routes>
<div id="home">
<Home />
</div>
<div id="about">
<About />
</div>
<div id="projects">
<Projects />
</div>
<div id="awards">
<Awards />
</div>
<div id="technologies">
<Technologies />
</div>
<div id="contact">
<Contact />
</div>

<Footer />
</Router>
</div>
);
}
export default App;
12 changes: 6 additions & 6 deletions src/Components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ function Footer() {
return (
<footer className="container mx-auto py-1 fixed bottom-0 md:left-20 bg-white dark:bg-dark-mode">
<p className="text-xs text-center text-dark-content dark:text-light-content w-full">
Designed and Coded by{" "}
{/* Designed and Coded by{" "} */}
<a
className="font-medium"
href="https://pavanmg.in"
// href="https://pavanmg.in"
target="_blank"
rel="noreferrer noopener"
>
Pavan MG
{/* Pavan MG */}
</a>{" "}
with
<span className="text-gradient font-medium"> Love</span> &
<span className="text-gradient font-medium"> Coffee</span>
{/* with */}
{/* <span className="text-gradient font-medium"> Love</span> & */}
{/* <span className="text-gradient font-medium"> Coffee</span> */}
</p>
</footer>
);
Expand Down
Loading