Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0317be5ae5 | |||
| 176fd197a5 | |||
| cb793a0af7 | |||
| ba30162853 | |||
| be77495e11 | |||
| b09c7ad1ff | |||
| 51932dd98b | |||
| 85fec9808a |
@@ -18,9 +18,10 @@ export default function ConsultationPage() {
|
|||||||
{ name: 'Services', id: '/#services' },
|
{ name: 'Services', id: '/#services' },
|
||||||
{ name: 'Who This Is For', id: '/#who-this-is-for' },
|
{ name: 'Who This Is For', id: '/#who-this-is-for' },
|
||||||
{ name: 'What You Get', id: '/#what-you-get' },
|
{ name: 'What You Get', id: '/#what-you-get' },
|
||||||
|
{ name: 'Products', id: '/products' },
|
||||||
{ name: 'Portfolio', id: '/#portfolio' },
|
{ name: 'Portfolio', id: '/#portfolio' },
|
||||||
{ name: 'Testimonials', id: '/#testimonials' },
|
{ name: 'Testimonials', id: '/#testimonials' },
|
||||||
{ name: 'Consultation', id: '/consultation' },
|
{ name: 'Book Now', id: '/consultation' },
|
||||||
{ name: 'Contact', id: '/#contact' }
|
{ name: 'Contact', id: '/#contact' }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -142,10 +143,11 @@ export default function ConsultationPage() {
|
|||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Products", href: "/products" },
|
||||||
{ label: "Portfolio", href: "/#portfolio" },
|
{ label: "Portfolio", href: "/#portfolio" },
|
||||||
{ label: "Testimonials", href: "/#testimonials" },
|
{ label: "Testimonials", href: "/#testimonials" },
|
||||||
{ label: "Contact", href: "/#contact" },
|
{ label: "Book Now", href: "/consultation" },
|
||||||
{ label: "Consultation", href: "/consultation" }
|
{ label: "Contact", href: "/#contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -270,7 +270,6 @@ export default function LandingPage() {
|
|||||||
className="!py-vw-4 !bg-background-accent/50"
|
className="!py-vw-4 !bg-background-accent/50"
|
||||||
contentClassName="!py-vw-4 !px-vw-2_5 !bg-card border border-accent/20 rounded-pill shadow-xl"
|
contentClassName="!py-vw-4 !px-vw-2_5 !bg-card border border-accent/20 rounded-pill shadow-xl"
|
||||||
textClassName="!text-3xl lg:!text-4xl"
|
textClassName="!text-3xl lg:!text-4xl"
|
||||||
buttonClassName="!py-vw-0_75 !px-vw-2"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -286,7 +285,6 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
className="!py-vw-4"
|
className="!py-vw-4"
|
||||||
textClassName="!text-3xl lg:!text-4xl"
|
textClassName="!text-3xl lg:!text-4xl"
|
||||||
buttonClassName="!py-vw-0_75 !px-vw-2"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -353,4 +351,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
173
src/app/products/page.tsx
Normal file
173
src/app/products/page.tsx
Normal file
@@ -0,0 +1,173 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||||
|
import ReactLenis from 'lenis/react';
|
||||||
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||||
|
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||||
|
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
||||||
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
import { Sparkles, Gem, CheckCircle, ArrowRight } from 'lucide-react';
|
||||||
|
|
||||||
|
export default function ProductsPage() {
|
||||||
|
const navItems = [
|
||||||
|
{ name: 'Home', id: '/' },
|
||||||
|
{ name: 'Services', id: '/#services' },
|
||||||
|
{ name: 'Who This Is For', id: '/#who-this-is-for' },
|
||||||
|
{ name: 'What You Get', id: '/#what-you-get' },
|
||||||
|
{ name: 'Products', id: '/products' },
|
||||||
|
{ name: 'Portfolio', id: '/#portfolio' },
|
||||||
|
{ name: 'Testimonials', id: '/#testimonials' },
|
||||||
|
{ name: 'Book Now', id: '/consultation' },
|
||||||
|
{ name: 'Contact', id: '/#contact' }
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="directional-hover"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="layered-gradient"
|
||||||
|
primaryButtonStyle="primary-glow"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="light"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleApple
|
||||||
|
navItems={navItems}
|
||||||
|
brandName="Vertex Digital"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="hero" data-section="hero">
|
||||||
|
<HeroBillboardTestimonial
|
||||||
|
title="High-Performance Websites. Built to Convert."
|
||||||
|
description="From clean landing pages to advanced systems—choose a plan designed for speed, design, and results."
|
||||||
|
background={{ variant: "radial-gradient" }}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Get Started", href: "/consultation" },
|
||||||
|
{ text: "Book Consultation", href: "/consultation" }
|
||||||
|
]}
|
||||||
|
useInvertedBackground={true}
|
||||||
|
testimonials={[]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="pricing" data-section="pricing">
|
||||||
|
<PricingCardFive
|
||||||
|
title="Our Website Development Plans"
|
||||||
|
description="Find the perfect solution to launch or scale your online presence with our tailored website development plans."
|
||||||
|
animationType="scale-rotate"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
plans={[
|
||||||
|
{
|
||||||
|
id: "starter", tag: "Starter", price: "₹9,999", period: "one-time", description: "Essential for launching your online presence.", button: { text: "Choose Starter", href: "/consultation" },
|
||||||
|
featuresTitle: "Key Features", features: [
|
||||||
|
"1-page custom design", "Responsive layout", "3-5 day delivery", "Basic SEO optimization", "Contact form integration"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "growth", tag: "Growth", price: "₹19,999", period: "one-time", description: "Ideal for growing businesses needing more content.", button: { text: "Choose Growth", href: "/consultation" },
|
||||||
|
featuresTitle: "Key Features", features: [
|
||||||
|
"3-5 page custom design", "Advanced responsive layout", "5-7 day delivery", "Enhanced SEO optimization", "CMS integration (basic)", "Basic analytics setup"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "pro", tag: "Most Popular", tagIcon: Sparkles,
|
||||||
|
price: "₹29,999", period: "one-time", description: "For professional businesses demanding robust features.", button: { text: "Choose Pro", href: "/consultation" },
|
||||||
|
featuresTitle: "Key Features", features: [
|
||||||
|
"5-8 page custom design", "Premium responsive experience", "7-10 day delivery", "Comprehensive SEO strategy", "Advanced CMS integration", "CRM integration", "Performance analytics dashboard"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "elite", tag: "Best Value", tagIcon: Gem,
|
||||||
|
price: "₹49,999", period: "one-time", description: "Fully customized solution for complex requirements.", button: { text: "Choose Elite", href: "/consultation" },
|
||||||
|
featuresTitle: "Key Features", features: [
|
||||||
|
"Fully custom pages & features", "Bespoke design & development", "10-14 day delivery", "Dedicated project manager", "Ongoing support & maintenance", "Custom integrations & APIs", "Advanced security features"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="why-us" data-section="why-us">
|
||||||
|
<FeatureCardTwentySeven
|
||||||
|
title="Why Vertex Digital?"
|
||||||
|
description="Partner with us for unparalleled expertise and dedicated support."
|
||||||
|
animationType="blur-reveal"
|
||||||
|
textboxLayout="default"
|
||||||
|
gridVariant="two-items-per-row"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
id: "perf", title: "Built for performance, not just design", description: "Our websites are engineered for speed, efficiency, and flawless functionality, ensuring a superior user experience."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "conv", title: "Conversion-focused structure", description: "Every element is strategically placed to guide users towards your business goals, optimizing for conversions."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "fast", title: "Fast, responsive, optimized", description: "We deliver lightning-fast load times, seamless responsiveness across all devices, and meticulous optimization for search engines."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "premium", title: "Premium, modern UI systems", description: "Leverage cutting-edge design principles and modern UI frameworks to create an intuitive and engaging interface."
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="final-cta" data-section="final-cta">
|
||||||
|
<ContactCTA
|
||||||
|
title="Not sure which plan fits you?"
|
||||||
|
description="Let us help you find the perfect solution tailored to your needs. Reach out for a personalized consultation."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book Consultation", href: "/consultation" },
|
||||||
|
{ text: "Get Started", href: "/consultation" }
|
||||||
|
]}
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
tag="Get In Touch"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterSimple
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Services", items: [
|
||||||
|
{ label: "Web Development", href: "/#services" },
|
||||||
|
{ label: "Branding", href: "/#services" },
|
||||||
|
{ label: "UI/UX Design", href: "/#services" },
|
||||||
|
{ label: "Digital Growth", href: "/#services" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Products", href: "/products" },
|
||||||
|
{ label: "Portfolio", href: "/#portfolio" },
|
||||||
|
{ label: "Testimonials", href: "/#testimonials" },
|
||||||
|
{ label: "Book Now", href: "/consultation" },
|
||||||
|
{ label: "Contact", href: "/#contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
bottomLeftText="© 2024 Vertex Digital. All rights reserved."
|
||||||
|
bottomRightText="Powered by Innovation"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user