mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-18 13:34:06 +01:00
fix: lint
This commit is contained in:
parent
4f7cdf37e8
commit
083335c010
@ -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
|
||||
@ -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}
|
||||
|
||||
@ -7,7 +7,6 @@ import {
|
||||
NavigationMenu,
|
||||
NavigationMenuContent,
|
||||
NavigationMenuItem,
|
||||
NavigationMenuLink,
|
||||
NavigationMenuList,
|
||||
NavigationMenuTrigger,
|
||||
} from "@/components/ui/navigation-menu";
|
||||
|
||||
@ -8,7 +8,6 @@ import {
|
||||
NavigationMenu,
|
||||
NavigationMenuContent,
|
||||
NavigationMenuItem,
|
||||
NavigationMenuLink,
|
||||
NavigationMenuList,
|
||||
NavigationMenuTrigger,
|
||||
} from "@/components/ui/navigation-menu";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user