5 Commits

Author SHA1 Message Date
7284d3f916 Update src/app/portfolio/page.tsx 2026-01-22 19:46:22 +00:00
a377fb7d45 Update src/app/page.tsx 2026-01-22 19:46:21 +00:00
28dbe9b3e5 Update src/app/contact/page.tsx 2026-01-22 19:46:20 +00:00
3b641b516e Update src/app/blog/page.tsx 2026-01-22 19:46:20 +00:00
49e94f930c Update src/app/about/page.tsx 2026-01-22 19:46:19 +00:00
5 changed files with 14 additions and 10 deletions

View File

@@ -26,6 +26,7 @@ export default function AboutPage() {
<NavbarStyleFullscreen
brandName="PitchDrive"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Team", id: "/team" },

View File

@@ -125,12 +125,12 @@ export default function BlogPage() {
<NavbarStyleFullscreen
brandName="PitchDrive"
navItems={[
{ name: "Home", id: "/home" },
{ name: "About", id: "about" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Team", id: "team" },
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Team", id: "/team" },
{ name: "Blog", id: "https://blog.pitchdrive.com" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "/contact" }
]}
bottomLeftText="Antwerp, Belgium"
bottomRightText="hello@pitchdrive.vc"
@@ -158,9 +158,9 @@ export default function BlogPage() {
columns={[
{
title: "Company", items: [
{ label: "About", href: "about" },
{ label: "Portfolio", href: "portfolio" },
{ label: "Team", href: "team" },
{ label: "About", href: "/about" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Team", href: "/team" },
{ label: "Blog", href: "https://blog.pitchdrive.vc" }
]
},
@@ -168,8 +168,8 @@ export default function BlogPage() {
title: "Resources", items: [
{ label: "Founder Resources", href: "https://pitchdrive.vc/resources" },
{ label: "Investment Process", href: "https://pitchdrive.vc/how-we-invest" },
{ label: "FAQ", href: "faq" },
{ label: "Contact", href: "contact" }
{ label: "FAQ", href: "/faq" },
{ label: "Contact", href: "/contact" }
]
},
{

View File

@@ -26,6 +26,7 @@ export default function ContactPage() {
<NavbarStyleFullscreen
brandName="PitchDrive"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Team", id: "/team" },

View File

@@ -29,6 +29,7 @@ export default function HomePage() {
<NavbarStyleFullscreen
brandName="PitchDrive"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Team", id: "/team" },

View File

@@ -26,6 +26,7 @@ export default function PortfolioPage() {
<NavbarStyleFullscreen
brandName="PitchDrive"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Team", id: "/team" },