Merge version_1 into main #1
@@ -24,7 +24,7 @@ export default function AboutPage() {
|
||||
name: "Rajesh Kumar",
|
||||
role: "Chief Executive Officer",
|
||||
description: "Visionary leader with 20+ years of experience in strategic business transformation and organizational development.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3830.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3830.jpg?_wi=2",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
@@ -36,7 +36,7 @@ export default function AboutPage() {
|
||||
name: "Priya Sharma",
|
||||
role: "Chief Strategy Officer",
|
||||
description: "Strategic innovator with expertise in digital transformation, market analysis, and competitive positioning strategies.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting_23-2148824909.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting_23-2148824909.jpg?_wi=2",
|
||||
imageAlt: "Priya Sharma",
|
||||
socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
@@ -48,7 +48,7 @@ export default function AboutPage() {
|
||||
name: "Amit Patel",
|
||||
role: "Director of Operations",
|
||||
description: "Operations expert focused on process optimization, team leadership, and ensuring exceptional delivery across all engagements.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-elegant-suit-fashion-male-posing-studio-near-blue-wall_158538-21048.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-elegant-suit-fashion-male-posing-studio-near-blue-wall_158538-21048.jpg?_wi=2",
|
||||
imageAlt: "Amit Patel",
|
||||
socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
@@ -60,7 +60,7 @@ export default function AboutPage() {
|
||||
name: "Neha Desai",
|
||||
role: "Head of Innovation",
|
||||
description: "Innovation catalyst driving emerging technology adoption and breakthrough business model development for forward-thinking clients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg?_wi=2",
|
||||
imageAlt: "Neha Desai",
|
||||
socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
@@ -106,7 +106,7 @@ export default function AboutPage() {
|
||||
description="Founded on principles of innovation and integrity"
|
||||
subdescription="GT India - Your Trusted Partner"
|
||||
icon={CheckCircle}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/multiethnic-colleagues-pitching-investment-strategy-manager_482257-123615.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/multiethnic-colleagues-pitching-investment-strategy-manager_482257-123615.jpg?_wi=2"
|
||||
imageAlt="GT India team collaboration"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "GT India - Premium Business Solutions & Strategic Consulting",
|
||||
description: "Transform your business with GT India's award-winning consulting services. Strategic guidance, proven expertise, and 24/7 support for sustainable growth.",
|
||||
keywords: "business consulting, strategic planning, organizational transformation, corporate strategy, India",
|
||||
metadataBase: new URL("https://www.gtindia.com"),
|
||||
alternates: {
|
||||
canonical: "https://www.gtindia.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "GT India - Transform Your Business",
|
||||
description: "Discover premium business solutions designed for organizational excellence and sustainable growth.",
|
||||
url: "https://www.gtindia.com",
|
||||
siteName: "GT India",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-people-business-meeting_23-2149271700.jpg",
|
||||
alt: "GT India Business Solutions",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "GT India - Premium Business Consulting",
|
||||
description: "Strategic solutions for business transformation and growth.",
|
||||
images: ["http://img.b2bpic.net/free-photo/close-up-people-business-meeting_23-2149271700.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -61,7 +61,7 @@ export default function HomePage() {
|
||||
name: "Rajesh Kumar",
|
||||
role: "Chief Executive Officer",
|
||||
description: "Visionary leader with 20+ years of experience in strategic business transformation and organizational development.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3830.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3830.jpg?_wi=1",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
@@ -73,7 +73,7 @@ export default function HomePage() {
|
||||
name: "Priya Sharma",
|
||||
role: "Chief Strategy Officer",
|
||||
description: "Strategic innovator with expertise in digital transformation, market analysis, and competitive positioning strategies.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting_23-2148824909.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting_23-2148824909.jpg?_wi=1",
|
||||
imageAlt: "Priya Sharma",
|
||||
socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
@@ -85,7 +85,7 @@ export default function HomePage() {
|
||||
name: "Amit Patel",
|
||||
role: "Director of Operations",
|
||||
description: "Operations expert focused on process optimization, team leadership, and ensuring exceptional delivery across all engagements.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-elegant-suit-fashion-male-posing-studio-near-blue-wall_158538-21048.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-elegant-suit-fashion-male-posing-studio-near-blue-wall_158538-21048.jpg?_wi=1",
|
||||
imageAlt: "Amit Patel",
|
||||
socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
@@ -97,7 +97,7 @@ export default function HomePage() {
|
||||
name: "Neha Desai",
|
||||
role: "Head of Innovation",
|
||||
description: "Innovation catalyst driving emerging technology adoption and breakthrough business model development for forward-thinking clients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg?_wi=1",
|
||||
imageAlt: "Neha Desai",
|
||||
socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
@@ -204,7 +204,7 @@ export default function HomePage() {
|
||||
description="Founded on principles of innovation and integrity"
|
||||
subdescription="GT India - Your Trusted Partner"
|
||||
icon={CheckCircle}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/multiethnic-colleagues-pitching-investment-strategy-manager_482257-123615.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/multiethnic-colleagues-pitching-investment-strategy-manager_482257-123615.jpg?_wi=1"
|
||||
imageAlt="GT India team collaboration"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
@@ -225,21 +225,21 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Strategic Analysis",
|
||||
description: "Deep-dive assessment of your current business landscape, identifying opportunities, threats, and competitive advantages.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/graph-growth-success-improvement-development-business_53876-123895.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/graph-growth-success-improvement-development-business_53876-123895.jpg?_wi=1",
|
||||
imageAlt: "Strategic analysis and planning",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Custom Solutions Design",
|
||||
description: "Tailored strategy development and implementation roadmap specifically designed for your organizational goals and culture.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-colleagues-having-meeting_23-2149060286.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-colleagues-having-meeting_23-2149060286.jpg?_wi=1",
|
||||
imageAlt: "Custom solution design",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Execution & Support",
|
||||
description: "Comprehensive implementation with dedicated support teams ensuring smooth transition and maximum adoption across all departments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-meeting-with-three-business-people_23-2147626551.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-meeting-with-three-business-people_23-2147626551.jpg?_wi=1",
|
||||
imageAlt: "Implementation and support",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -53,21 +53,21 @@ export default function ServicesPage() {
|
||||
id: 1,
|
||||
title: "Strategic Analysis",
|
||||
description: "Deep-dive assessment of your current business landscape, identifying opportunities, threats, and competitive advantages.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/graph-growth-success-improvement-development-business_53876-123895.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/graph-growth-success-improvement-development-business_53876-123895.jpg?_wi=2",
|
||||
imageAlt: "Strategic analysis and planning",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Custom Solutions Design",
|
||||
description: "Tailored strategy development and implementation roadmap specifically designed for your organizational goals and culture.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-colleagues-having-meeting_23-2149060286.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-colleagues-having-meeting_23-2149060286.jpg?_wi=2",
|
||||
imageAlt: "Custom solution design",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Execution & Support",
|
||||
description: "Comprehensive implementation with dedicated support teams ensuring smooth transition and maximum adoption across all departments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-meeting-with-three-business-people_23-2147626551.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-meeting-with-three-business-people_23-2147626551.jpg?_wi=2",
|
||||
imageAlt: "Implementation and support",
|
||||
},
|
||||
]}
|
||||
@@ -130,7 +130,7 @@ export default function ServicesPage() {
|
||||
name: "Rajesh Kumar",
|
||||
role: "Chief Executive Officer",
|
||||
description: "Visionary leader with 20+ years of experience in strategic business transformation and organizational development.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3830.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3830.jpg?_wi=3",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
socialLinks: [
|
||||
{
|
||||
@@ -148,7 +148,7 @@ export default function ServicesPage() {
|
||||
name: "Priya Sharma",
|
||||
role: "Chief Strategy Officer",
|
||||
description: "Strategic innovator with expertise in digital transformation, market analysis, and competitive positioning strategies.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting_23-2148824909.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-posing-meeting_23-2148824909.jpg?_wi=3",
|
||||
imageAlt: "Priya Sharma",
|
||||
socialLinks: [
|
||||
{
|
||||
@@ -166,7 +166,7 @@ export default function ServicesPage() {
|
||||
name: "Amit Patel",
|
||||
role: "Director of Operations",
|
||||
description: "Operations expert focused on process optimization, team leadership, and ensuring exceptional delivery across all engagements.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-elegant-suit-fashion-male-posing-studio-near-blue-wall_158538-21048.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-elegant-suit-fashion-male-posing-studio-near-blue-wall_158538-21048.jpg?_wi=3",
|
||||
imageAlt: "Amit Patel",
|
||||
socialLinks: [
|
||||
{
|
||||
@@ -184,7 +184,7 @@ export default function ServicesPage() {
|
||||
name: "Neha Desai",
|
||||
role: "Head of Innovation",
|
||||
description: "Innovation catalyst driving emerging technology adoption and breakthrough business model development for forward-thinking clients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg?_wi=3",
|
||||
imageAlt: "Neha Desai",
|
||||
socialLinks: [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user