Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-05-25 00:53:44 +00:00

View File

@@ -6,7 +6,7 @@ import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwen
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import FooterBase from "@/components/sections/footer/FooterBase";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Star } from "lucide-react";
@@ -61,7 +61,15 @@ export default function ClientPortalTemplatePage() {
<ContactSplit tag="Get Started" title="Ready to Upgrade Your Operations?" description="Join the agencies transforming their client experience." useInvertedBackground={false} background={{ variant: "canvas-reveal" }} />
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal logoText="PortalOS" columns={[{ title: "Product", items: [{ label: "Features", href: "#" }, { label: "Pricing", href: "#" }] }]} />
<FooterBase
logoText="PortalOS"
columns={[
{ title: "Product", items: [{ label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }] },
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
]}
copyrightText="© 2025 PortalOS. All rights reserved."
/>
</div>
</ThemeProvider>
);