team.tsx
team-one.tsx
import TeamOne from "@/components/team-one";
export default async function OnlyViewComponent() {
return <TeamOne />;
}
team.tsx
team-two.tsx
team-card.tsx
import TeamTwo from "@/components/team-two";
export default async function OnlyViewComponent() {
return <TeamTwo />;
}
team.tsx
team-three.tsx
marquee.tsx
tailwind.config.ts
import TeamThree from "@/components/team-three";
export default async function OnlyViewComponent() {
return <TeamThree />;
}