import React from "react"; import Header from "../../../../components/header/Header"; import Footer from "../../../../components/footer/Footer"; import CopyRight from "../../../../components/footer/CopyRight"; import TeamDetails from "../../../../components/team/TeamDetails"; import { allTeams } from "@/data/team"; import Image from "next/image"; export const metadata = { title: 'Team Details V1 || Deski-Saas & Software Nextjs Template', description: `Unleash the full potential of your software projects with our SaaS-focused Next.js template. Create engaging blogs, showcase your talented team, set up an online shop, provide helpful FAQs, and offer exceptional services with our feature-rich solution. Elevate your SaaS and software development with ease and drive growth. Try it now and take your projects to new heights.`, } const TeamDetailsV1 = ({ params }) => { const team = allTeams.filter((elm)=>elm.id==params.id)[0] || allTeams[0] return (