diff --git a/next.config.js b/next.config.js
index 3176fc1..1f9211d 100644
--- a/next.config.js
+++ b/next.config.js
@@ -1,9 +1,8 @@
-const withMDX = require('@next/mdx')();
-
/** @type {import('next').NextConfig} */
const nextConfig = {
- output: "export",
- images: { unoptimized: true }
+ images: {
+ domains: ['tetragram.codered.cloud'],
+ },
}
-module.exports = nextConfig;
+module.exports = nextConfig
\ No newline at end of file
diff --git a/public/man-avatar-clipart-illustration-free-png.webp b/public/man-avatar-clipart-illustration-free-png.webp
new file mode 100644
index 0000000..19352e2
Binary files /dev/null and b/public/man-avatar-clipart-illustration-free-png.webp differ
diff --git a/src/app/blogs/Blogcard.js b/src/app/blogs/Blogcard.js
index 52faa12..89e016a 100644
--- a/src/app/blogs/Blogcard.js
+++ b/src/app/blogs/Blogcard.js
@@ -1,5 +1,28 @@
+// src/components/BlogCard.js
+/*import Link from 'next/link';
+import styles from './Blogcard.module.css'; // Use CSS modules for styles
+
+const BlogCard = ({ title, blogLink}) => {
+ //const truncatedDescription = description.length > 100 ? `${description.slice(0, 100)}...` : description;
+
+ return (
+
diff --git a/src/app/team/man-avatar-clipart-illustration-free-png.webp b/src/app/team/man-avatar-clipart-illustration-free-png.webp
new file mode 100644
index 0000000..19352e2
Binary files /dev/null and b/src/app/team/man-avatar-clipart-illustration-free-png.webp differ
diff --git a/src/app/team/page.js b/src/app/team/page.js
new file mode 100644
index 0000000..d5836ac
--- /dev/null
+++ b/src/app/team/page.js
@@ -0,0 +1,158 @@
+/*import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
+import { faFacebook, faTwitter, faInstagram } from '@fortawesome/free-brands-svg-icons';
+import Image from 'next/image';
+
+const Home = () => {
+ return (
+
+
+
+
+
+
+
+
Tom Cruise
+
Full Stack Developer
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default Home;
+
+
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
+import { faFacebook, faTwitter, faInstagram } from '@fortawesome/free-brands-svg-icons';
+import Image from 'next/image';
+
+const Home = () => {
+ const teamMembers = [
+ { name: 'Tom Cruise', role: 'Full Stack Developer' },
+ { name: 'John Doe', role: 'Frontend Developer' },
+ { name: 'Jane Doe', role: 'Backend Developer' },
+ { name: 'Alice Smith', role: 'UI/UX Designer' },
+ { name: 'Bob Johnson', role: 'Data Scientist' },
+ { name: 'Eve White', role: 'DevOps Engineer' },
+ // Add more team members here
+ ];
+
+ return (
+
+
+
+ {teamMembers.map((member, index) => (
+
+
+
+
+
+
{member.name}
+
{member.role}
+
+
+
+
+
+
+
+ ))}
+
+
+
+ );
+};
+
+export default Home;
+*/
+"use client"
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
+import Navbar from '@/components/Navbar/Navbar';
+import Footer from '@/components/footer';
+import './styles.css'
+import { faFacebook, faTwitter, faInstagram } from '@fortawesome/free-brands-svg-icons';
+import Image from 'next/image';
+
+const Home = () => {
+ const teamMembers = [
+ { name: 'Tom Cruise', role: 'Full Stack Developer' },
+ { name: 'John Doe', role: 'Frontend Developer' },
+ { name: 'Jane Doe', role: 'Backend Developer' },
+ { name: 'Alice Smith', role: 'UI/UX Designer' },
+ { name: 'Bob Johnson', role: 'Data Scientist' },
+ { name: 'Eve White', role: 'DevOps Engineer' },
+ // Add more team members here
+ ];
+
+ return (
+ <>
+
+
+
+
+ {teamMembers.map((member, index) => (
+
+
+
+
+
+
{member.name}
+
{member.role}
+
+
+
+
+
+
+
+ ))}
+
+
+
>
+ );
+};
+
+export default Home;
+
diff --git a/src/app/team/styles.css b/src/app/team/styles.css
new file mode 100644
index 0000000..513736a
--- /dev/null
+++ b/src/app/team/styles.css
@@ -0,0 +1,3 @@
+.custom-text-color{
+ color: #A8019Dff
+}
\ No newline at end of file
diff --git a/src/app/team/th.jpeg b/src/app/team/th.jpeg
new file mode 100644
index 0000000..9aa5eda
Binary files /dev/null and b/src/app/team/th.jpeg differ