11 Commits

6 changed files with 20 additions and 16 deletions

View File

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

View File

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

View File

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

View File

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

View File

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