fix: lint

This commit is contained in:
Sosokker 2024-11-28 05:48:52 +07:00
parent 4f7cdf37e8
commit 083335c010
4 changed files with 5 additions and 3 deletions

View File

@ -24,3 +24,6 @@ NEXT_PUBLIC_ADMIN_PASSWORD=admin-secure-password
# Temporary Regular User Credentials for Testing (Delete after test completion)
NEXT_PUBLIC_TEST_USER_EMAIL=test-user@example.com
NEXT_PUBLIC_TEST_USER_PASSWORD=test-user-password
# CAPTCHA
NEXT_PUBLIC_SITEKEY=captcha-sitekey-key

View File

@ -88,9 +88,10 @@ export default function About() {
<h1 className="text-gray-500 text-2xl">we have built a team and a network of the top people from</h1>
<h1 className="text-gray-500 text-2xl">the startup, venture capital, and investment worlds.</h1>
<div className="mt-10">
{founderData.map((profile) => {
{founderData.map((profile, index) => {
return (
<FounderCard
key={index}
image={profile.profileLogo}
name={profile.name}
position={profile.position}

View File

@ -7,7 +7,6 @@ import {
NavigationMenu,
NavigationMenuContent,
NavigationMenuItem,
NavigationMenuLink,
NavigationMenuList,
NavigationMenuTrigger,
} from "@/components/ui/navigation-menu";

View File

@ -8,7 +8,6 @@ import {
NavigationMenu,
NavigationMenuContent,
NavigationMenuItem,
NavigationMenuLink,
NavigationMenuList,
NavigationMenuTrigger,
} from "@/components/ui/navigation-menu";