Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c35363602c | |||
| 7ad19eaf68 | |||
| 949c760364 | |||
| 415d8b93d2 | |||
| 74aa0fa849 | |||
| a867798950 | |||
| a10609fedd | |||
| 038a706ece | |||
| 1c0ae719d4 | |||
| 0a50bba47b |
@@ -3,15 +3,14 @@
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||||
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import { History } from "lucide-react";
|
||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "/services" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Pricing", id: "/pricing" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -32,38 +31,27 @@ export default function AboutPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
brandName="Coach"
|
brandName="St. Jerome"
|
||||||
button={{ text: "Contact", href: "/contact" }}
|
button={{ text: "Join Us", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="about-hero" data-section="about-hero">
|
<main className="pt-32">
|
||||||
<MetricSplitMediaAbout
|
<div id="about" data-section="about">
|
||||||
title="Dedicated to Your Success"
|
<MetricSplitMediaAbout
|
||||||
description="With over 12 years of experience in executive and business coaching, I have dedicated my career to helping leaders like you navigate the complexities of growth."
|
title="Our History & Mission"
|
||||||
metrics={[{ value: "12+", title: "Years Experience" }, { value: "500+", title: "Clients Coached" }]}
|
description="Founded with a vision of community and spiritual growth, St. Jerome has been a pillar of the neighborhood for decades. We are dedicated to nurturing faith through tradition, sacraments, and active engagement with our local mission."
|
||||||
useInvertedBackground={false}
|
tag="Faith in Action"
|
||||||
mediaAnimation="slide-up"
|
tagIcon={History}
|
||||||
metricsAnimation="slide-up"
|
metrics={[{ value: "100+", title: "Years Served" }, { value: "500+", title: "Families" }]}
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
</div>
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPYUJPeaDgYc4FSlAZFCKnMOqE/uploaded-1776289077687-hlsfoa09.jpg"
|
||||||
<div id="team" data-section="team">
|
imageAlt="Church History"
|
||||||
<TeamCardTwo
|
/>
|
||||||
title="Meet Your Coach"
|
</div>
|
||||||
description="Get to know the experts behind our success."
|
</main>
|
||||||
members={[
|
<FooterCard
|
||||||
{
|
logoText="St. Jerome"
|
||||||
id: "1", name: "John Anderson", role: "Lead Business Strategist", description: "Expert in executive coaching and team alignment."
|
copyrightText="© 2025 St. Jerome Roman Catholic Church"
|
||||||
}
|
|
||||||
]}
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<FooterBaseReveal
|
|
||||||
logoText="Coach"
|
|
||||||
columns={[{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }]}
|
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -2,16 +2,15 @@
|
|||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import { MapPin } from "lucide-react";
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Services", id: "/services" },
|
|
||||||
{ name: "Pricing", id: "/pricing" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -32,23 +31,25 @@ export default function ContactPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
brandName="Coach"
|
brandName="St. Jerome"
|
||||||
button={{ text: "Contact", href: "/contact" }}
|
button={{ text: "Join Us", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="contact" data-section="contact">
|
<main className="pt-32">
|
||||||
<ContactCTA
|
<div id="contact" data-section="contact">
|
||||||
tag="Contact"
|
<ContactCenter
|
||||||
title="Let's Connect"
|
title="Contact Information"
|
||||||
description="Reach out to us."
|
description="We are located in the heart of our community. Feel free to visit, reach out via phone, or send us a message through our parish office. We look forward to welcoming you."
|
||||||
buttons={[{ text: "Send Message", href: "#" }]}
|
tag="Visit Us"
|
||||||
background={{ variant: "plain" }}
|
tagIcon={MapPin}
|
||||||
useInvertedBackground={false}
|
background={{ variant: "radial-gradient" }}
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
</div>
|
/>
|
||||||
<FooterBaseReveal
|
</div>
|
||||||
logoText="Coach"
|
</main>
|
||||||
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
|
<FooterCard
|
||||||
|
logoText="St. Jerome"
|
||||||
|
copyrightText="© 2025 St. Jerome Roman Catholic Church"
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ const inter = Inter({
|
|||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = { title: 'Elevate Your Leadership | Expert Business Coaching Services', description: 'Unlock your full potential with personalized business coaching. Strategic guidance to scale your operations, refine your leadership, and achieve sustainable growth.' };
|
export const metadata: Metadata = { title: 'Coach Website', description: 'Professional coaching and parish community services.' };
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
|
|||||||
@@ -2,15 +2,15 @@
|
|||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function SaintJeromePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Services", id: "/services" },
|
{ name: "Giving", id: "/giving" },
|
||||||
{ name: "Pricing", id: "/pricing" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -28,19 +28,36 @@ export default function HomePage() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<NavbarLayoutFloatingInline
|
||||||
<NavbarLayoutFloatingInline
|
navItems={navItems}
|
||||||
navItems={navItems}
|
brandName="Saint Jerome"
|
||||||
brandName="Coach"
|
button={{ text: "Giving", href: "/giving" }}
|
||||||
button={{ text: "Contact", href: "/contact" }}
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPYUJPeaDgYc4FSlAZFCKnMOqE/uploaded-1776289077688-pmeewk62.jpg"
|
||||||
|
/>
|
||||||
|
<main>
|
||||||
|
<HeroBillboardCarousel
|
||||||
|
title="Welcome to Saint Jerome Parish"
|
||||||
|
description="A community of faith, service, and devotion."
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
mediaItems={[
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPYUJPeaDgYc4FSlAZFCKnMOqE/uploaded-1776289077687-hlsfoa09.jpg" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPYUJPeaDgYc4FSlAZFCKnMOqE/uploaded-1776289077687-ufy51wxw.jpg" }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</main>
|
||||||
<div id="hero" data-section="hero">
|
<FooterMedia
|
||||||
<h1>Welcome to Coach</h1>
|
logoText="Saint Jerome Parish"
|
||||||
</div>
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPYUJPeaDgYc4FSlAZFCKnMOqE/uploaded-1776289077688-pmeewk62.jpg"
|
||||||
<FooterBaseReveal
|
columns={[
|
||||||
logoText="Coach"
|
{
|
||||||
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
|
title: "Menu", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "About", href: "/about" },
|
||||||
|
{ label: "Giving", href: "/giving" },
|
||||||
|
{ label: "Contact", href: "/contact" },
|
||||||
|
],
|
||||||
|
}
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -1,67 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
|
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
|
|
||||||
export default function PricingPage() {
|
|
||||||
const navItems = [
|
|
||||||
{ name: "Home", id: "/" },
|
|
||||||
{ name: "About", id: "/about" },
|
|
||||||
{ name: "Services", id: "/services" },
|
|
||||||
{ name: "Pricing", id: "/pricing" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="entrance-slide"
|
|
||||||
borderRadius="rounded"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="medium"
|
|
||||||
background="none"
|
|
||||||
cardStyle="glass-elevated"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="solid"
|
|
||||||
headingFontWeight="medium"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<div id="nav" data-section="nav">
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
navItems={navItems}
|
|
||||||
brandName="Coach"
|
|
||||||
button={{ text: "Contact", href: "/contact" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div id="pricing" data-section="pricing">
|
|
||||||
<PricingCardNine
|
|
||||||
title="Simple Pricing"
|
|
||||||
description="Choose your plan."
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
plans={[
|
|
||||||
{ id: "p1", title: "Starter", price: "$999", period: "/mo", features: ["Feature 1"], button: { text: "Get Started", href: "/contact" } }
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<ContactCTA
|
|
||||||
tag="Ready?"
|
|
||||||
title="Get in Touch"
|
|
||||||
description="Contact us for more info."
|
|
||||||
buttons={[{ text: "Email Us", href: "/contact" }]}
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
useInvertedBackground={true}
|
|
||||||
/>
|
|
||||||
<FooterBaseReveal
|
|
||||||
logoText="Coach"
|
|
||||||
columns={[{ title: "Legal", items: [{ label: "Privacy", href: "#" }] }]}
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
|
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
|
|
||||||
export default function ServicesPage() {
|
|
||||||
const navItems = [
|
|
||||||
{ name: "Home", id: "/" },
|
|
||||||
{ name: "About", id: "/about" },
|
|
||||||
{ name: "Services", id: "/services" },
|
|
||||||
{ name: "Pricing", id: "/pricing" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="entrance-slide"
|
|
||||||
borderRadius="rounded"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="medium"
|
|
||||||
background="none"
|
|
||||||
cardStyle="glass-elevated"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="solid"
|
|
||||||
headingFontWeight="medium"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<div id="nav" data-section="nav">
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
navItems={navItems}
|
|
||||||
brandName="Coach"
|
|
||||||
button={{ text: "Contact", href: "/contact" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div id="services" data-section="services">
|
|
||||||
<FeatureCardNine
|
|
||||||
title="Service Offerings"
|
|
||||||
description="Comprehensive coaching programs."
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
showStepNumbers={true}
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
title: "Strategy & Operations", description: "Optimizing business models.", phoneOne: { imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?_wi=1" },
|
|
||||||
phoneTwo: { imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?_wi=2" }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Executive Leadership", description: "Refining decision-making.", phoneOne: { imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?_wi=3" },
|
|
||||||
phoneTwo: { imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?_wi=4" }
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<ContactCTA
|
|
||||||
tag="Ready?"
|
|
||||||
title="Let's Connect"
|
|
||||||
description="Schedule a call today."
|
|
||||||
buttons={[{ text: "Contact", href: "/contact" }]}
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
useInvertedBackground={true}
|
|
||||||
/>
|
|
||||||
<FooterBaseReveal
|
|
||||||
logoText="Coach"
|
|
||||||
columns={[{ title: "Info", items: [{ label: "Home", href: "/" }] }]}
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user