4 Commits

Author SHA1 Message Date
43d977d87c Update src/app/page.tsx 2026-04-06 00:11:05 +00:00
481e3d9f02 Update src/app/page.tsx 2026-04-06 00:10:34 +00:00
98b66cf17f Merge version_1 into main
Merge version_1 into main
2026-04-06 00:04:51 +00:00
8d16fee82e Merge version_1 into main
Merge version_1 into main
2026-04-06 00:04:23 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -143,43 +143,21 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{
variant: "plain"}}
tag="Get Started"
title="Ready to steward your future?"
description="Lets start a conversation about aligning your financial goals with your values."
<ContactText
background={{ variant: "plain" }}
text="Ready to steward your future? Lets start a conversation about aligning your financial goals with your values."
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Navigation", items: [
{
label: "Philosophy", href: "#about"},
{
label: "Services", href: "#features"},
{
label: "Contact", href: "#contact"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms", href: "#"},
],
},
]}
<FooterLogoReveal
logoText="Stewardship Financial"
copyrightText="© 2025 Stewardship Financial. All rights reserved."
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}