Update src/app/pricing/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -25,32 +25,15 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "/pricing",
|
||||
},
|
||||
{
|
||||
name: "Blog",
|
||||
id: "/blog",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Digitech Solutions"
|
||||
button={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -61,37 +44,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
tag: "Standard",
|
||||
price: "$999",
|
||||
period: "/mo",
|
||||
description: "Good for starters.",
|
||||
button: {
|
||||
text: "Choose Plan",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Included",
|
||||
features: [
|
||||
"SEO",
|
||||
"Analytics",
|
||||
],
|
||||
id: "basic", tag: "Standard", price: "$999", period: "/mo", description: "Good for starters.", button: {
|
||||
text: "Choose Plan", href: "/contact"},
|
||||
featuresTitle: "Included", features: ["SEO", "Analytics"],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
tag: "Advanced",
|
||||
price: "$2999",
|
||||
period: "/mo",
|
||||
description: "High performance.",
|
||||
button: {
|
||||
text: "Choose Plan",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Included",
|
||||
features: [
|
||||
"SEO",
|
||||
"PPC",
|
||||
"Social",
|
||||
],
|
||||
id: "pro", tag: "Advanced", price: "$2999", period: "/mo", description: "High performance.", button: {
|
||||
text: "Choose Plan", href: "/contact"},
|
||||
featuresTitle: "Included", features: ["SEO", "PPC", "Social"],
|
||||
},
|
||||
]}
|
||||
title="Marketing Plans"
|
||||
@@ -106,42 +66,15 @@ export default function LandingPage() {
|
||||
title="Industry Recognition"
|
||||
description="We are proud to work with the best."
|
||||
names={[
|
||||
"Alpha Corp",
|
||||
"Beta Tech",
|
||||
"Gamma Inc",
|
||||
"Delta Labs",
|
||||
"Epsilon",
|
||||
]}
|
||||
"Alpha Corp", "Beta Tech", "Gamma Inc", "Delta Labs", "Epsilon"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "/pricing",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Blog",
|
||||
href: "/blog",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "About", href: "/about" }, { label: "Pricing", href: "/pricing" }] },
|
||||
{ items: [{ label: "Blog", href: "/blog" }, { label: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Digitech Solutions"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user