Skip to content

Commit

Permalink
added about page
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-aplok committed Oct 19, 2024
1 parent 8cecc0b commit d4bfcd0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export default function Header() {
<span className="text-2xl font-bold">Kolpa Engine</span>
</div>
<div className="hidden md:flex space-x-6">
<Link href="#features" className="text-muted-foreground hover:text-primary transition-colors">Features</Link>
<Link href="#showcase" className="text-muted-foreground hover:text-primary transition-colors">Showcase</Link>
<Link href="#pricing" className="text-muted-foreground hover:text-primary transition-colors">Pricing</Link>
<Link href="#contact" className="text-muted-foreground hover:text-primary transition-colors">Contact</Link>
<Link href="/#features" className="text-muted-foreground hover:text-primary transition-colors">Features</Link>
<Link href="/#showcase" className="text-muted-foreground hover:text-primary transition-colors">Showcase</Link>
<Link href="/#pricing" className="text-muted-foreground hover:text-primary transition-colors">Pricing</Link>
<Link href="/#contact" className="text-muted-foreground hover:text-primary transition-colors">Contact</Link>
<Link href="/about" className="text-muted-foreground hover:text-primary transition-colors">About</Link>
</div>
<Button className="hidden md:inline-flex">Get Started</Button>
Expand All @@ -29,10 +29,10 @@ export default function Header() {
</nav>
{isMenuOpen && (
<div className="mt-4 flex flex-col space-y-4 md:hidden">
<Link href="#features" className="text-muted-foreground hover:text-primary transition-colors">Features</Link>
<Link href="#showcase" className="text-muted-foreground hover:text-primary transition-colors">Showcase</Link>
<Link href="#pricing" className="text-muted-foreground hover:text-primary transition-colors">Pricing</Link>
<Link href="#contact" className="text-muted-foreground hover:text-primary transition-colors">Contact</Link>
<Link href="/#features" className="text-muted-foreground hover:text-primary transition-colors">Features</Link>
<Link href="/#showcase" className="text-muted-foreground hover:text-primary transition-colors">Showcase</Link>
<Link href="/#pricing" className="text-muted-foreground hover:text-primary transition-colors">Pricing</Link>
<Link href="/#contact" className="text-muted-foreground hover:text-primary transition-colors">Contact</Link>
<Link href="/about" className="text-muted-foreground hover:text-primary transition-colors">About</Link>
<Button>Get Started</Button>
</div>
Expand Down

0 comments on commit d4bfcd0

Please sign in to comment.