);
}
\ No newline at end of file
diff --git a/app/apply/startup/page.tsx b/app/apply/startup/page.tsx
index 9d646fa..5a0dfac 100644
--- a/app/apply/startup/page.tsx
+++ b/app/apply/startup/page.tsx
@@ -2,6 +2,10 @@
import { useState } from "react";
import PublicLayout from "@/components/layout/PublicLayout";
+import { Input } from "@/components/ui/input";
+import { Textarea } from "@/components/ui/textarea";
+import { Label } from "@/components/ui/label";
+import { Button } from "@/components/ui/button";
type StartupFormState = {
name: string;
@@ -32,79 +36,63 @@ export default function StartupApplyPage() {
Startup Application
- UI only for now — submitting will log your inputs to the console.
+ Tell us more about your startup!
+
+
+
+
);
}
-
diff --git a/app/demo/page.tsx b/app/demo/page.tsx
index 70f31e6..0284790 100644
--- a/app/demo/page.tsx
+++ b/app/demo/page.tsx
@@ -1,10 +1,12 @@
// Example of using a service in a component, also using a reusable component
+export const dynamic = "force-dynamic";
+
import Image from "next/image";
import SimpleButton from "../../components/demobutton";
-import { Button } from "@/components/ui/shadcndemobutton";
+import { Button } from "@/components/ui/button";
import { getProducts } from "@/services/demo";
export default async function DemoPage() {
diff --git a/app/leaders/page.tsx b/app/leaders/page.tsx
index 704b37c..5df36c6 100644
--- a/app/leaders/page.tsx
+++ b/app/leaders/page.tsx
@@ -1,207 +1,136 @@
+'use client';
+
import React from 'react';
-import PublicLayout from '@/components/layout/PublicLayout';
+import LeaderCard2 from '@/components/ui/LeaderCard2';
-export default function AboutUs() {
- const team = [
- {
- name: "Sarah Johnson",
- title: "Founder & CEO",
- bio: "Former co-founder of TechVentures. Early investor at Google and Amazon.",
- image: "https://ui-avatars.com/api/?name=Sarah+Johnson&size=400&background=e5e5e5&color=000&bold=true"
- },
- {
- name: "Michael Chen",
- title: "Investment Director",
- bio: "Lead investor at Sequoia Capital. Former partner at Y Combinator.",
- image: "https://ui-avatars.com/api/?name=Michael+Chen&size=400&background=e5e5e5&color=000&bold=true"
- },
- {
- name: "Emily Rodriguez",
- title: "Head of Programs",
- bio: "Built accelerator programs at Techstars. Former founder of EdTech startup.",
- image: "https://ui-avatars.com/api/?name=Emily+Rodriguez&size=400&background=e5e5e5&color=000&bold=true"
- },
- {
- name: "David Park",
- title: "Technical Advisor",
- bio: "Former CTO at Stripe. Led engineering at Facebook and Airbnb.",
- image: "https://ui-avatars.com/api/?name=David+Park&size=400&background=e5e5e5&color=000&bold=true"
- },
- {
- name: "Alex Thompson",
- title: "Operations Manager",
- bio: "Scaled operations at Uber. Former consultant at McKinsey.",
- image: "https://ui-avatars.com/api/?name=Alex+Thompson&size=400&background=e5e5e5&color=000&bold=true"
- },
- {
- name: "Maria Garcia",
- title: "Venture Partner",
- bio: "15 years in venture capital. Board member at multiple unicorns.",
- image: "https://ui-avatars.com/api/?name=Maria+Garcia&size=400&background=e5e5e5&color=000&bold=true"
- },
- {
- name: "Ryan Mitchell",
- title: "Community Lead",
- bio: "Built communities at Reddit. Former developer relations at GitHub.",
- image: "https://ui-avatars.com/api/?name=Ryan+Mitchell&size=400&background=e5e5e5&color=000&bold=true"
- },
- {
- name: "Sharad Aggarwal",
- title: "VC",
- bio: "Global head of AI Strategy at Google Cloud",
- image: "https://ui-avatars.com/api/?name=Sharad+Aggarwal&size=400&background=e5e5e5&color=000&bold=true"
- }
- ];
+const team = [
+ {
+ name: "Sarah Johnson",
+ title: "Founder & CEO",
+ bio: "Former co-founder of TechVentures. Early investor at Google and Amazon.",
+ image: "woman.jpg",
+ },
+ {
+ name: "Michael Chen",
+ title: "Investment Director",
+ bio: "Lead investor at Sequoia Capital. Former partner at Y Combinator.",
+ image: "men.jpg",
+ },
+ {
+ name: "Emily Rodriguez",
+ title: "Head of Programs",
+ bio: "Built accelerator programs at Techstars. Former founder of EdTech startup.",
+ image: "woman.jpg",
+ },
+ {
+ name: "David Park",
+ title: "Technical Advisor",
+ bio: "Former CTO at Stripe. Led engineering at Facebook and Airbnb.",
+ image: "men.jpg",
+ },
+ {
+ name: "Alex Thompson",
+ title: "Operations Manager",
+ bio: "Scaled operations at Uber. Former consultant at McKinsey.",
+ image: "https://ui-avatars.com/api/?name=Alex+Thompson&size=400&background=e5e5e5&color=000&bold=true",
+ },
+ {
+ name: "Maria Garcia",
+ title: "Venture Partner",
+ bio: "15 years in venture capital. Board member at multiple unicorns.",
+ image: "https://ui-avatars.com/api/?name=Maria+Garcia&size=400&background=e5e5e5&color=000&bold=true",
+ },
+ {
+ name: "Ryan Mitchell",
+ title: "Community Lead",
+ bio: "Built communities at Reddit. Former developer relations at GitHub.",
+ image: "https://ui-avatars.com/api/?name=Ryan+Mitchell&size=400&background=e5e5e5&color=000&bold=true",
+ },
+ {
+ name: "Sharad Aggarwal",
+ title: "VC",
+ bio: "Global head of AI Strategy at Google Cloud.",
+ image: "https://ui-avatars.com/api/?name=Sharad+Aggarwal&size=400&background=e5e5e5&color=000&bold=true",
+ },
+];
+export default function Leaders() {
return (
-
-
- {/* Header Section */}
-
+
+
+ {/* Header */}
+
We are the people who make up BIG STRATEGY LABS
- Our philosophy is simple: hire great people and give them
- the resources and support to do their best work.
+ Our philosophy is simple: hire great people and give them the resources and support to do their best work.