Skip to content

Commit 98bb219

Browse files
committed
improvements and meta properties
1 parent 70de4b1 commit 98bb219

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Breadcrumb from "@/components/Common/Breadcrumb";
2-
import ContactCopy from "@/components/Contactcopy";
2+
import Team from "@/components/Team";
33

44
import { Metadata } from "next";
55

@@ -10,17 +10,17 @@ import { Metadata } from "next";
1010
// //V!g8n35h was here and if you found this, you deserve a chocolate
1111
// };
1212

13-
const ContactPageCopy = () => {
13+
const hi = () => {
1414
return (
1515
<>
1616
<Breadcrumb
1717
pageName="Meet the Team"
1818
description="Get in touch with us. We are always here to help you."
1919
/>
2020

21-
<ContactCopy />
21+
<Team />
2222
</>
2323
);
2424
};
2525

26-
export default ContactPageCopy;
26+
export default Team;

app/page.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Hero from "@/components/Hero";
99
import Pricing from "@/components/Pricing";
1010
import Testimonials from "@/components/Testimonials";
1111
// import Video from "@/components/Video";
12-
import ContactCopy from "@/components/Contactcopy";
12+
import Team from "@/components/Team";
1313
import { Metadata } from "next";
1414
import { Analytics } from "@vercel/analytics/react"
1515
import { SpeedInsights } from "@vercel/speed-insights/next"
@@ -20,6 +20,9 @@ import { SpeedInsights } from "@vercel/speed-insights/next"
2020
// // other metadata
2121
// };
2222

23+
<meta property="og:image" content="/images/logo/Official Logo-02-white.svg" />
24+
25+
2326
export default function Home() {
2427
return (
2528
<>

components/Brands/brandsData.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ const brandsData: Brand[] = [
1919
id: 3,
2020
name: "IIT Kanpur",
2121
href: "https://www.iitk.ac.in",
22-
image: "/images/brands/unknown.png",
22+
image: "/images/brands/Unknown.png",
2323
// imageLight: "/images/brands/lineicons-light.svg",
2424
},
2525
{
2626
id: 4,
2727
name: "T Motors",
2828
href: "https://uav-en.tmotor.com",
29-
image: "/images/brands/unknown-1.png",
29+
image: "/images/brands/Unknown-1.png",
3030
// imageLight: "/images/brands/ayroui-light.svg",
3131
},
3232
];

components/Header/menuData.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const menuData: Menu[] = [
4646
{
4747
id: 8,
4848
title: "Team",
49-
path: "/contactcopy",
49+
path: "/Team",
5050
newTab: false,
5151
},
5252
// {

components/Contactcopy/index.tsx renamed to components/Team/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ const TeamCard = ({ member }) => {
209209
);
210210
};
211211

212-
const ContactCopy = () => {
212+
const Team = () => {
213213
return (
214214
<div>
215215
{/* y21s */}
@@ -308,7 +308,7 @@ const ContactCopy = () => {
308308
);
309309
};
310310

311-
export default ContactCopy;
311+
export default Team;
312312
//
313313
// ¯\(ツ)/¯
314314
// Harshit Chaudhary was here, if you see this, feel lucky

0 commit comments

Comments
 (0)