Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -55,7 +55,8 @@ export default function BlogPage() {
|
|||||||
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
||||||
const response = await fetch(url, {
|
const response = await fetch(url, {
|
||||||
method: "GET", headers: {
|
method: "GET", headers: {
|
||||||
"Content-Type": "application/json"},
|
"Content-Type": "application/json"
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
@@ -103,6 +104,7 @@ export default function BlogPage() {
|
|||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "home" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Achievements", id: "achievements" },
|
{ name: "Achievements", id: "achievements" },
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Philosophy", id: "philosophy" },
|
{ name: "Philosophy", id: "philosophy" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -5,12 +5,13 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
|||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||||
|
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import { Award, Brain, Heart, Shield, TrendingUp, Trophy, Zap, Star, Clock, Flame, BookOpen, Mail, Instagram, Twitter, Linkedin } from "lucide-react";
|
import { Award, Brain, Heart, Shield, TrendingUp, Trophy, Zap, Star, Clock, Flame, BookOpen, Mail, Instagram, Twitter, Linkedin, Users, Target, Briefcase } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -32,6 +33,7 @@ export default function LandingPage() {
|
|||||||
{"name": "Home", "id": "home"},
|
{"name": "Home", "id": "home"},
|
||||||
{"name": "About", "id": "about"},
|
{"name": "About", "id": "about"},
|
||||||
{"name": "Achievements", "id": "achievements"},
|
{"name": "Achievements", "id": "achievements"},
|
||||||
|
{"name": "Services", "id": "services"},
|
||||||
{"name": "Philosophy", "id": "philosophy"},
|
{"name": "Philosophy", "id": "philosophy"},
|
||||||
{"name": "Contact", "id": "contact"}
|
{"name": "Contact", "id": "contact"}
|
||||||
]}
|
]}
|
||||||
@@ -96,6 +98,35 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="services" data-section="services">
|
||||||
|
<FeatureCardSeven
|
||||||
|
title="Executive Training Programs"
|
||||||
|
description="Proven methodologies to develop top-performing leaders in your organization"
|
||||||
|
tag="Elite Development"
|
||||||
|
tagIcon={Briefcase}
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
"id": 1,
|
||||||
|
"title": "Leadership Performance Coaching", "description": "One-on-one and group coaching sessions designed to elevate executive performance, build confidence, and develop resilience under pressure using proven athletic training principles.", "imageSrc": "https://img.b2bpic.net/free-photo/business-partners-shaking-hands_1098-1318.jpg", "imageAlt": "Leadership coaching session"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 2,
|
||||||
|
"title": "Team Excellence Programs", "description": "Transform your team dynamics through collaborative exercises, mental conditioning, and strategic planning sessions inspired by Olympic team training methodologies.", "imageSrc": "https://img.b2bpic.net/free-photo/group-business-people-discussing-plan-meeting_1098-1319.jpg", "imageAlt": "Team collaboration workshop"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 3,
|
||||||
|
"title": "Performance Strategy Sessions", "description": "Customize your organization's approach to peak performance with data-driven insights, mental resilience training, and proven success frameworks from Olympic competition.", "imageSrc": "https://img.b2bpic.net/free-photo/business-strategy-planning_1098-1320.jpg", "imageAlt": "Strategic planning meeting"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
|
buttons={[
|
||||||
|
{"text": "Schedule Consultation", "href": "#contact"}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="philosophy" data-section="philosophy">
|
<div id="philosophy" data-section="philosophy">
|
||||||
<FeatureBento
|
<FeatureBento
|
||||||
title="Training Philosophy"
|
title="Training Philosophy"
|
||||||
|
|||||||
Reference in New Issue
Block a user