This page showcases the Team Section component from your project.
The Team Section highlights the people behind your product or service. It often includes team member profiles with names, roles, and optionally links to social media or brief bios.
Below is an example of how to import and use the Team Section in your code:
// Import the TeamSection component
import { TeamSection } from "@/components/sections/TeamSection";
function HomePage() {
return (
<main>
<TeamSection />
</main>
);
}
export default HomePage;