Skip to content

Commit

Permalink
more functions added
Browse files Browse the repository at this point in the history
  • Loading branch information
kunal-511 committed Sep 20, 2023
1 parent f3433fb commit 9f776dd
Show file tree
Hide file tree
Showing 7 changed files with 260 additions and 233 deletions.
10 changes: 5 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ function App() {
<Header />
<Routes>
<Route path="/resume-builder" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/services" element={<Services />} />
<Route path="/contact" element={<ContactUs />} />
<Route path="/template1" element={<Template1 />} />
<Route path="/template2" element={<Template2 />} />
<Route path="/resume-builder/about" element={<About />} />
<Route path="/resume-builder/services" element={<Services />} />
<Route path="/resume-builder/contact" element={<ContactUs />} />
<Route path="/resume-builder/template1" element={<Template1 />} />
<Route path="/resume-builder/template2" element={<Template2 />} />
</Routes>
<Footer />
</Router>
Expand Down
4 changes: 2 additions & 2 deletions src/Components/ChooseTempelate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const ChooseTemplate: React.FC = () => {
<div className="flex justify-evenly mt-2 items-center h-[100vh]">
<div className=" imgBox flex flex-col">
<Link
to="/template1"
to="/resume-builder/template1"
className="text-center font-semibold text-xl"

>
Expand All @@ -26,7 +26,7 @@ const ChooseTemplate: React.FC = () => {
<div className=" imgBox flex flex-col">
<Link
className="text-center font-semibold text-xl"
to="/template2"
to="/resume-builder/template2"

>
Template 2
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Header: React.FC = () => {
<h1 className=" font-semibold text-4xl hover:text-purple-200"> <Link to="/"> Resume Builder</Link></h1>
<ul className="flex space-x-5 text-xl">
<li className=" hover:text-purple-200">
<Link to="/">Home</Link>
<Link to="/resume-builder">Home</Link>
</li>
<li className=" hover:text-purple-200" >
<Link to="/about">About</Link>
Expand Down
Loading

0 comments on commit 9f776dd

Please sign in to comment.