Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ae4bcd4cc4 | |||
| fd07ec34b7 | |||
| d27ec1d281 | |||
| 98b4f239eb | |||
| 4976976685 | |||
| 4a719ec7a3 |
@@ -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) {
|
||||||
@@ -99,10 +100,10 @@ export default function BlogPage() {
|
|||||||
<div className="min-h-screen bg-background">
|
<div className="min-h-screen bg-background">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/home" },
|
{ name: "Home", id: "/" },
|
||||||
{ 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"
|
||||||
|
|||||||
96
src/app/services/page.tsx
Normal file
96
src/app/services/page.tsx
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||||
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import { Instagram, Twitter, Linkedin, Mail, Briefcase } from 'lucide-react';
|
||||||
|
|
||||||
|
export default function ServicesPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="directional-hover"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="mediumLarge"
|
||||||
|
background="aurora"
|
||||||
|
cardStyle="gradient-bordered"
|
||||||
|
primaryButtonStyle="inset-glow"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="semibold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div className="min-h-screen bg-background">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
|
{ name: "Achievements", id: "achievements" },
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "Philosophy", id: "philosophy" },
|
||||||
|
{ name: "Contact", id: "contact" }
|
||||||
|
]}
|
||||||
|
brandName="Rory Gibbs"
|
||||||
|
bottomLeftText="Olympic Champion"
|
||||||
|
bottomRightText="hello@rorygibbs.com"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div id="services" data-section="services" className="py-20">
|
||||||
|
<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"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 4,
|
||||||
|
"title": "Corporate Wellness & Fitness", "description": "Comprehensive wellness programs that integrate physical training, nutrition guidance, and mental health support to optimize employee performance and company culture.", "imageSrc": "https://img.b2bpic.net/free-photo/group-fitness-training_1098-1321.jpg", "imageAlt": "Corporate wellness training"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 5,
|
||||||
|
"title": "Motivational Speaking", "description": "Inspiring keynote presentations for corporate events, conferences, and team gatherings that share Olympic journey insights and drive organizational excellence.", "imageSrc": "https://img.b2bpic.net/free-photo/speaker-addressing-audience_1098-1322.jpg", "imageAlt": "Motivational speaking event"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 6,
|
||||||
|
"title": "Custom Training Packages", "description": "Tailored programs designed specifically for your organization's unique goals, challenges, and culture—combining athletic excellence principles with business strategy.", "imageSrc": "https://img.b2bpic.net/free-photo/training-customization_1098-1323.jpg", "imageAlt": "Custom training package design"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
|
buttons={[
|
||||||
|
{"text": "Schedule Consultation", "href": "/#contact"}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<FooterCard
|
||||||
|
logoText="Rory Gibbs"
|
||||||
|
copyrightText="© 2025 Rory Gibbs. Olympic Champion. All rights reserved."
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Instagram, href: "https://instagram.com/rorygibbs", ariaLabel: "Instagram" },
|
||||||
|
{ icon: Twitter, href: "https://twitter.com/rorygibbs", ariaLabel: "Twitter" },
|
||||||
|
{ icon: Linkedin, href: "https://linkedin.com/in/rorygibbs", ariaLabel: "LinkedIn" },
|
||||||
|
{ icon: Mail, href: "mailto:hello@rorygibbs.com", ariaLabel: "Email" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user