Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d07800757 | |||
| 83a8822727 | |||
| ae4bcd4cc4 | |||
| fd07ec34b7 | |||
| d27ec1d281 | |||
| 98b4f239eb |
@@ -100,8 +100,7 @@ export default function BlogPage() {
|
||||
<div className="min-h-screen bg-background">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/home" },
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Achievements", id: "achievements" },
|
||||
{ name: "Services", id: "services" },
|
||||
@@ -144,4 +143,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1265,4 +1265,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function LandingPage() {
|
||||
enableKpiAnimation={true}
|
||||
tag="Elite Athlete"
|
||||
tagIcon={Award}
|
||||
imageSrc="https://img.b2bpic.net/free-photo/joyful-young-handsome-sporty-man-wearing-headband-wristbands-medal-around-neck-gesturing-strong-isolated-white-wall_141793-101713.jpg"
|
||||
imageSrc="https://img.b2bpic.net/premium-photo/portrait-men-happy-sports-court-with-squash-racket-fitness-game-exercise-performance-smile-athlete-people-equipment-play-match-club-tournament-practice-competition_590464-483720.jpg?id=382939786"
|
||||
imageAlt="Rory Gibbs Olympic Champion"
|
||||
imagePosition="right"
|
||||
buttons={[
|
||||
@@ -107,15 +107,15 @@ export default function LandingPage() {
|
||||
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"
|
||||
"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/group-people-working-out-together-outdoors_23-2149891467.jpg?id=34137118", "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"
|
||||
"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/premium-photo/coach-reviewing-playbook-with-team_1314467-168780.jpg?id=324598511", "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"
|
||||
"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/people-training-athletics_23-2151077709.jpg?id=150856792", "imageAlt": "Strategic planning meeting"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
@@ -230,4 +230,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
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/group-people-working-out-together-outdoors_23-2149891467.jpg?id=34137118", "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/premium-photo/coach-reviewing-playbook-with-team_1314467-168780.jpg?id=324598511", "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/people-training-athletics_23-2151077709.jpg?id=150856792", "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