Add src/app/pricing/page.tsx

This commit is contained in:
2026-06-02 23:51:29 +00:00
parent 12dfbb0fce
commit ae7d9ef794

133
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,133 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import { Code, Crown, Sparkles, Star } from "lucide-react";
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="compact"
sizing="mediumLargeSizeMediumTitles"
background="floatingGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "/#hero"},
{
name: "About", id: "/#about"},
{
name: "Services", id: "/#features"},
{
name: "Portfolio", id: "/#products"},
{
name: "Pricing", id: "/pricing"},
{
name: "Blog & Resources", id: "/blog"},
{
name: "Testimonials", id: "/#testimonials"},
{
name: "Contact", id: "/#contact"},
]}
logoSrc="http://img.b2bpic.net/free-photo/office-supplies-black-table_171337-13076.jpg"
logoAlt="Albert Dev logo"
brandName="Albert Dev"
bottomLeftText="Your Digital Partner"
bottomRightText="hello@albertdev.com"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Flexible Plans for Source Code & App Development."
description="Choose the perfect tier for your project, from ready-made source code products to full-scale custom application development services. Get transparent pricing and robust features."
tag="Our Pricing"
plans={[
{
id: "source-code-starter", title: "Source Code Starter", price: "$499", period: "one-time", imageSrc: "http://img.b2bpic.net/free-photo/coding-software-developer-workplace-concept_53876-117564.jpg", features: [
"Access to 1 Premium Source Code Product", "Basic Documentation", "Community Support", "Lifetime Usage License"],
button: {
text: "Get Started", href: "#contact"},
},
{
id: "app-dev-standard", title: "App Dev Standard", price: "$4,999", period: "per project", imageSrc: "http://img.b2bpic.net/free-photo/programmer-working-developing-software-websites-mobile-apps-technologies_1077-4089.jpg", features: [
"Custom Web Application (Up to 10 pages)", "Responsive UI/UX Design", "Standard Backend Integration", "2 Months Post-Launch Support", "Partial Source Code Access"],
button: {
text: "Request Quote", href: "#contact"},
},
{
id: "enterprise-suite", title: "Enterprise Suite", price: "Custom", period: "per project", imageSrc: "http://img.b2bpic.net/free-photo/diverse-businesspeople-meeting-modern-office_23-2149578644.jpg", features: [
"Full-Stack Custom Application (Web & Mobile)", "Advanced Scalability & Security", "Dedicated Project Manager", "Ongoing Maintenance & Priority Support", "Full Source Code Ownership"],
button: {
text: "Contact Sales", href: "#contact"},
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoSrc="http://img.b2bpic.net/free-photo/office-supplies-black-table_171337-13076.jpg"
logoAlt="Albert Dev logo"
logoText="Albert Dev"
columns={[
{
title: "Services", items: [
{
label: "Web Development", href: "/#features"},
{
label: "Mobile Apps", href: "/#features"},
{
label: "Source Code", href: "/#products"},
{
label: "UI/UX Design", href: "/#features"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "/#about"},
{
label: "Portfolio", href: "/#products"},
{
label: "Pricing", href: "/pricing"},
{
label: "Blog & Resources", href: "/blog"},
{
label: "Testimonials", href: "/#testimonials"},
],
},
{
title: "Connect", items: [
{
label: "Contact", href: "/#contact"},
{
label: "LinkedIn", href: "https://linkedin.com/albertdev"},
{
label: "Twitter", href: "https://twitter.com/albertdev"},
],
},
]}
copyrightText="© 2024 Albert Dev. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}