Update src/app/portfolio/page.tsx

This commit is contained in:
2026-03-03 19:19:10 +00:00
parent 7f58c08f0c
commit dafc6d154e

View File

@@ -18,10 +18,10 @@ const navItems = [
const footerColumns = [
{
title: "Navigáció", items: [
{ label: "Rólam", href: "/about" },
{ label: "Szolgáltatások", href: "/services" },
{ label: "Munkáim", href: "/portfolio" },
{ label: "Hogyan dolgozom", href: "/process" },
{ label: "Rólam", href: "#about" },
{ label: "Szolgáltatások", href: "#services" },
{ label: "Munkáim", href: "#portfolio" },
{ label: "Hogyan dolgozom", href: "#process" },
],
},
{
@@ -94,7 +94,7 @@ export default function PortfolioPage() {
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Foglalj konzultációt", href: "/contact" },
{ text: "Foglalj konzultációt", href: "contact" },
{ text: "Hívás most", href: "tel:+36302735403" },
]}
ariaLabel="Contact CTA section"
@@ -112,4 +112,4 @@ export default function PortfolioPage() {
</div>
</ThemeProvider>
);
}
}