diff --git a/next.config.mjs b/next.config.mjs index 6a3a214..56e1e69 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -31,6 +31,11 @@ const nextConfig = { hostname: "assets.republic.com", pathname: "/**", }, + { + protocol: "https", + hostname: "media.licdn.com", + pathname: "/**", + }, ], }, }; diff --git a/src/app/(legal)/about/founderCard.tsx b/src/app/(legal)/about/founderCard.tsx new file mode 100644 index 0000000..332a2e9 --- /dev/null +++ b/src/app/(legal)/about/founderCard.tsx @@ -0,0 +1,18 @@ +import Image from "next/image"; +interface FounderCardProps { + image: string; + name: string; + position: string; + background: string; +} + +export default function FounderCard(props: FounderCardProps) { + return ( +
+ profile +

{props.name}

+

{props.position}

+ {props.background} +
+ ); +} diff --git a/src/app/(legal)/about/page.tsx b/src/app/(legal)/about/page.tsx index aefb97d..bc7ae3e 100644 --- a/src/app/(legal)/about/page.tsx +++ b/src/app/(legal)/about/page.tsx @@ -1,149 +1,105 @@ "use client"; import { Separator } from "@/components/ui/separator"; import InfoCard from "./infoCard"; +import FounderCard from "./founderCard"; export default function About() { // Static data for the cards - const cardData = [ - { - imageSrc: "https://avatars.githubusercontent.com/u/86756025", - name: "Pattadon Loyprasert", - description: - "Driven by a passion for innovation, Pattadon leads B2D Ventures with the belief that" + - "every great idea deserves the resources and support to thrive. He’s dedicated to" + - "helping entrepreneurs turn visions into reality.", - }, - { - imageSrc: "https://avatars.githubusercontent.com/u/22256420", - name: "Sirin Puenggun", - description: - "Sirin brings a wealth of experience in empowering entrepreneurs, aiming to" + - "create an ecosystem where bold ideas meet the right partners. He’s committed to" + - "making a lasting impact on the entrepreneurial world.", - }, - { - imageSrc: "https://avatars.githubusercontent.com/u/108450436", - name: "Naytitorn Chaovirachot", - description: - "With a strong foundation in collaboration and trust, Naytitorn is focused" + - "on building lasting partnerships that help drive the success of both investors and founders." + - "He thrives on turning challenges into growth opportunities.", - }, - { - imageSrc: "https://avatars.githubusercontent.com/u/114897362", - name: "Nantawat Sukrisunt", - description: - "Nantawat is a passionate advocate for innovation and teamwork." + - "He strives to foster a community where both investors and startups can achieve" + - "their full potential, creating a future where collaboration leads to success.", - }, - ]; - const imageData = { img1: "https://assets.republic.com/assets/static_pages/about/growth_opportunities/individual_investors-0e85dfd02359a24ac4b232be008c7168fc57d3437a2f526f5d5889b874b20221.png", img2: "https://assets.republic.com/assets/static_pages/about/growth_opportunities/accredited_investors-42d6aa046861adb7f0648f26ca3f798b07f3b13bf7024f7dc17c17acb78fdf2c.png", img3: "https://assets.republic.com/assets/static_pages/about/growth_opportunities/entrepreneurs-a0ff450c2f3ba0cea82e2c55cd9265ad5612455c79ec831adaa2c94d09a0e617.png", }; + const founderData = [ + { + name: "Sirisilp Kongsilp", + position: "Tech, Business", + profileLogo: + "https://media.licdn.com/dms/image/v2/C5603AQE6NwFfhOWqrw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1642637269980?e=1737590400&v=beta&t=zh3GpG_d5lSxxZyFn6_RMgVtjz7lacqlpDwZ84BRpAA", + background: + "Founder and CEO of Perception, a holographic computer startup focused on innovative technologies like VR/AR and human-computer interaction. ", + }, + ]; return ( -
-
-
-
-

Growth opportunities for all sides

-

of the investment market

-

- B2DVentures is where both accredited and non-accredited investors meet -

-

- entrepreneurs and access high-growth potential deals across a range -

-

of private markets.

-
-
-
- - - -
- +
+
+
+

Growth opportunities for all sides

+

of the investment market

+

+ B2DVentures is where both accredited and non-accredited investors meet +

+

+ entrepreneurs and access high-growth potential deals across a range +

+

of private markets.

+
+
+
+ +
+ +
-
-

Built by a diverse team with deep

+
+

Built by an experience team with deep

expertise in private investing

+

B2D Ventures was established by innovators with experience in

+

top investment platforms and entrepreneurial ecosystems. Since then,

+

we have built a team and a network of the top people from

+

the startup, venture capital, and investment worlds.

+
+ {founderData.map((profile) => { + return ( + + ); + })} +
- - {/*
-

- Welcome to B2D Ventures! We're a dynamic platform committed to bridging the gap between visionary - entrepreneurs and passionate investors. Our mission is to empower innovation by connecting groundbreaking - ideas with the resources they need to thrive. Through B2D Ventures, we foster a community where investors and - innovators come together to transform concepts into impactful, real-world solutions. -

-

- At B2D Ventures, we believe in the power of collaboration. Whether you're an investor looking to support - the next big idea or a founder aiming to bring your vision to life, our platform offers the tools and - connections to make it happen. Join us on a journey to reshape industries, drive positive change, and make a - lasting impact. -

-

Let's build the future, together.

-
*/} - - {/*
-

Our Team

- -
*/} - - {/* Card Section */} - {/*
- {cardData.map((card, index) => ( -
- {card.name} -
-

{card.name}

-

{card.description}

-
-
- ))} -
*/}
); }