Update src/app/pricing/page.tsx

This commit is contained in:
2026-04-03 07:24:24 +00:00
parent ff3ddf4bdc
commit 815c080e50

View File

@@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
export default function LandingPage() {
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -25,34 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Pricing",
id: "/pricing",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="YOR"
/>
@@ -65,6 +41,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Select a Plan"
description="Flexible options for every budget."
plans={[]}
/>
</div>
@@ -72,55 +49,17 @@ export default function LandingPage() {
<FaqSplitText
useInvertedBackground={false}
sideTitle="Pricing FAQ"
faqs={[]}
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Quick Links",
items: [
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Pricing",
href: "/pricing",
},
],
},
{
title: "Products",
items: [
{
label: "AI Receptionist",
href: "/services",
},
{
label: "AI Support",
href: "/services",
},
],
},
{
title: "Legal",
items: [
{
label: "Terms",
href: "/terms",
},
{
label: "Privacy",
href: "/privacy",
},
],
},
{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Products", items: [{ label: "AI Receptionist", href: "/services" }, { label: "AI Support", href: "/services" }] },
{ title: "Legal", items: [{ label: "Terms", href: "/terms" }, { label: "Privacy", href: "/privacy" }] },
]}
logoText="YOR"
copyrightText="© 2026 | YOR. Built with love for Indian businesses."
@@ -129,4 +68,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}