Skip to content

Commit d1668f5

Browse files
committed
making art portfolio into just portfolio
1 parent 036909e commit d1668f5

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/App.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { BrowserRouter as Router, Routes, Route, Link } from "react-router-dom";
22
import Home from "./pages/Home";
3-
import ArtPortfolio from "./pages/ArtPortfolio";
3+
import Portfolio from "./pages/Portfolio";
44
import Games from "./pages/Games";
55
import Contact from "./pages/Contact";
66
import Footer from "./components/Footer";
@@ -24,8 +24,8 @@ export default function App() {
2424
<Link to="/" className="text-purple-200 hover:text-purple-400 transition-colors">
2525
Home
2626
</Link>
27-
<Link to="/art" className="text-purple-200 hover:text-purple-400 transition-colors">
28-
Art Portfolio
27+
<Link to="/portfolio" className="text-purple-200 hover:text-purple-400 transition-colors">
28+
Portfolio
2929
</Link>
3030
<Link to="/games" className="text-purple-200 hover:text-purple-400 transition-colors">
3131
Games
@@ -46,7 +46,7 @@ export default function App() {
4646
<div className="flex-1">
4747
<Routes>
4848
<Route path="/" element={<Home />} />
49-
<Route path="/art" element={<ArtPortfolio />} />
49+
<Route path="/portfolio" element={<Portfolio />} />
5050
<Route path="/games" element={<Games />} />
5151
<Route path="/contact" element={<Contact />} />
5252
</Routes>

src/pages/Contact.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default function Contact() {
5151
transition={{ delay: 1 }}
5252
className="mt-12 text-gray-300 text-sm sm:text-base max-w-md"
5353
>
54-
Let’s connect — whether you’re interested in collaborations, commissions, or just want to chat about creative projects.
54+
Please feel free to reach out!
5555
</motion.p>
5656
</section>
5757

src/pages/Navbar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function Navbar() {
99

1010
const navLinks = [
1111
{ name: "Home", path: "/" },
12-
{ name: "Art Portfolio", path: "/art" },
12+
{ name: "Portfolio", path: "/portfolio" },
1313
{ name: "Games", path: "/games" },
1414
];
1515

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import fourthpic from "../assets/artwork/istheretime.png";
88
import fifthpic from "../assets/artwork/kitchenorange.0004.png";
99
import sixthpic from "../assets/artwork/playbillcovermeangirls_final.png";
1010

11-
export default function ArtPortfolio() {
11+
export default function Portfolio() {
1212
const images = [firstpic, anotherpic, thirdpic, fourthpic, fifthpic, sixthpic];
1313
const [selectedIndex, setSelectedIndex] = useState(null);
1414

0 commit comments

Comments
 (0)