Compare commits
8 Commits
version_8_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 43553cafd3 | |||
|
|
90a7a02d07 | ||
| 58c4b64a82 | |||
|
|
b4e2b28a52 | ||
|
|
f98d4ddcaf | ||
| 81cfdc6fba | |||
|
|
2659f3c75f | ||
| 172c2e9d72 |
@@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom';
|
||||
import Layout from './components/Layout';
|
||||
import HomePage from './pages/HomePage';
|
||||
|
||||
import PricingPage from "@/pages/PricingPage";
|
||||
export default function App() {
|
||||
return (
|
||||
<Routes>
|
||||
<Route element={<Layout />}>
|
||||
<Route path="/" element={<HomePage />} />
|
||||
<Route path="/pricing" element={<PricingPage />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
|
||||
@@ -34,7 +34,9 @@ export default function Layout() {
|
||||
{
|
||||
"name": "Metrics",
|
||||
"href": "#metrics"
|
||||
}
|
||||
},
|
||||
{ name: "Pricing", href: "/pricing" },
|
||||
|
||||
];
|
||||
|
||||
return (
|
||||
|
||||
@@ -3,6 +3,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeaturesMarqueeCards from '@/components/sections/features/FeaturesMarqueeCards';
|
||||
import HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards';
|
||||
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
|
||||
import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import TestimonialMetricsCards from '@/components/sections/testimonial/TestimonialMetricsCards';
|
||||
import { BarChart2, Sparkles, TrendingUp, Check } from 'lucide-react';
|
||||
@@ -101,7 +102,7 @@ const InlinedPricingHighlightedCards = ({
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col gap-3 w-full mt-auto">
|
||||
<Button text={plan.primaryButton.text} href={plan.primaryButton.href} variant="primary" className="w-full transform-gpu [perspective:1000px] [transform-style:preserve-3d] transition-transform duration-300 hover:[transform:rotateY(12deg)] hover:scale-105 shadow-lg hover:shadow-2xl" />
|
||||
<Button text={plan.primaryButton.text} href={plan.primaryButton.href} variant="primary" className="w-full transform-gpu [perspective:1000px] [transform-style:preserve-3d] transition-transform duration-300 hover:[transform:rotateY(25deg)_scale(1.1)_translateZ(20px)] shadow-xl hover:shadow-3xl" />
|
||||
{plan.secondaryButton && <Button text={plan.secondaryButton.text} href={plan.secondaryButton.href} variant="secondary" className="w-full" />}
|
||||
</div>
|
||||
</div>
|
||||
@@ -317,6 +318,46 @@ export default function HomePage() {
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<SectionErrorBoundary name="how-it-works">
|
||||
<FeaturesDetailedSteps
|
||||
tag="Our Process"
|
||||
title="Your Journey to Digital Success"
|
||||
description="We guide you through a clear, collaborative process to ensure your marketing goals are not just met, but exceeded."
|
||||
steps={[
|
||||
{
|
||||
tag: "Step 1",
|
||||
title: "Initial Consultation & Strategy",
|
||||
subtitle: "Understanding Your Vision",
|
||||
description: "We start with a deep dive into your business, goals, and target audience to craft a tailored marketing strategy.",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/business-people-meeting-discussing-ideas-concept_53876-133614.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Step 2",
|
||||
title: "Implementation & Execution",
|
||||
subtitle: "Bringing the Strategy to Life",
|
||||
description: "Our team meticulously executes the approved strategy, deploying campaigns across chosen digital channels.",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/young-female-logo-designer-working-graphic-tablet_23-2149119220.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Step 3",
|
||||
title: "Monitoring & Optimization",
|
||||
subtitle: "Continuous Improvement",
|
||||
description: "We continuously monitor performance, analyze data, and optimize campaigns for maximum ROI and sustained growth.",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/marketing-plan-commercial-strategy-business_53876-133615.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Step 4",
|
||||
title: "Reporting & Review",
|
||||
subtitle: "Transparent Insights",
|
||||
description: "Regular, transparent reports keep you informed of progress, with detailed insights and future recommendations.",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/professionals-present-financial-charts-meeting_482257-121150.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia imageSrc="https://img.b2bpic.net/free-photo/digital-marketing-with-laptop-phone-tablet_23-2150168632.jpg"
|
||||
|
||||
144
src/pages/PricingPage.tsx
Normal file
144
src/pages/PricingPage.tsx
Normal file
@@ -0,0 +1,144 @@
|
||||
import PricingCenteredCards from "@/components/sections/pricing/PricingCenteredCards";
|
||||
import { Check } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
const plans = [
|
||||
{
|
||||
tag: "Basic",
|
||||
price: "€499/mo",
|
||||
description: "Ideal for startups and small businesses looking to establish an online presence.",
|
||||
features: [
|
||||
"Basic SEO Optimization",
|
||||
"Social Media Setup",
|
||||
"Content Calendar (2 posts/week)",
|
||||
"Monthly Performance Report",
|
||||
],
|
||||
primaryButton: { text: "Get Started", href: "/#contact" },
|
||||
},
|
||||
{
|
||||
tag: "Pro",
|
||||
price: "€999/mo",
|
||||
description: "Perfect for growing businesses aiming for significant digital growth and engagement.",
|
||||
features: [
|
||||
"Advanced SEO Strategy",
|
||||
"Full Social Media Management",
|
||||
"Content Creation (4 posts/week)",
|
||||
"Bi-Weekly Performance Reports",
|
||||
"Email Marketing Campaigns",
|
||||
],
|
||||
primaryButton: { text: "Choose Pro", href: "/#contact" },
|
||||
},
|
||||
{
|
||||
tag: "Enterprise",
|
||||
price: "Custom",
|
||||
description: "Tailored solutions for large enterprises with complex marketing needs and ambitious goals.",
|
||||
features: [
|
||||
"Dedicated Account Manager",
|
||||
"Comprehensive Digital Strategy",
|
||||
"Unlimited Content Creation",
|
||||
"Weekly Performance Reviews",
|
||||
"Advanced Analytics & Insights",
|
||||
"PR & Influencer Outreach",
|
||||
],
|
||||
primaryButton: { text: "Contact Us", href: "/#contact" },
|
||||
},
|
||||
];
|
||||
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<div className="min-h-svh bg-background text-foreground flex flex-col">
|
||||
<div data-webild-section="PricingCenteredCards">
|
||||
<SectionErrorBoundary name="pricing">
|
||||
<PricingCenteredCards
|
||||
tag="Our Packages"
|
||||
title="Flexible Plans for Every Business"
|
||||
description="Choose the perfect marketing package designed to elevate your brand and achieve your business goals. All plans are customizable."
|
||||
plans={plans}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div data-webild-section="PricingComparisonTable">
|
||||
<SectionErrorBoundary name="pricing-comparison">
|
||||
<section className="bg-background text-foreground">
|
||||
<div className="w-content-width mx-auto px-4 md:px-6">
|
||||
<div className="text-center">
|
||||
<h2 className="text-4xl md:text-5xl font-medium mb-4">Detailed Feature Comparison</h2>
|
||||
<p className="text-lg text-muted-foreground max-w-content-width mx-auto">
|
||||
Compare our plans side-by-side to find the perfect fit for your business needs.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="overflow-x-auto">
|
||||
<table className="w-full text-left border-collapse min-w-[800px]">
|
||||
<thead>
|
||||
<tr>
|
||||
<th className="p-5 border-b border-border font-medium text-lg w-1/4">Features</th>
|
||||
<th className="p-5 border-b border-border font-medium text-lg text-center w-1/4">Basic</th>
|
||||
<th className="p-5 border-b border-border font-medium text-lg text-center w-1/4">Pro</th>
|
||||
<th className="p-5 border-b border-border font-medium text-lg text-center w-1/4">Enterprise</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr className="bg-card/30">
|
||||
<td className="p-5 border-b border-border font-medium">SEO Strategy</td>
|
||||
<td className="p-5 border-b border-border text-center">Basic</td>
|
||||
<td className="p-5 border-b border-border text-center">Advanced</td>
|
||||
<td className="p-5 border-b border-border text-center">Comprehensive</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className="p-5 border-b border-border font-medium">Social Media Posts</td>
|
||||
<td className="p-5 border-b border-border text-center">2 per week</td>
|
||||
<td className="p-5 border-b border-border text-center">4 per week</td>
|
||||
<td className="p-5 border-b border-border text-center">Unlimited</td>
|
||||
</tr>
|
||||
<tr className="bg-card/30">
|
||||
<td className="p-5 border-b border-border font-medium">Reporting</td>
|
||||
<td className="p-5 border-b border-border text-center">Monthly</td>
|
||||
<td className="p-5 border-b border-border text-center">Bi-Weekly</td>
|
||||
<td className="p-5 border-b border-border text-center">Weekly</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className="p-5 border-b border-border font-medium">Email Marketing</td>
|
||||
<td className="p-5 border-b border-border text-center text-muted-foreground">-</td>
|
||||
<td className="p-5 border-b border-border text-center">
|
||||
<div className="flex justify-center">
|
||||
<Check className="size-5 text-primary-cta" />
|
||||
</div>
|
||||
</td>
|
||||
<td className="p-5 border-b border-border text-center">
|
||||
<div className="flex justify-center">
|
||||
<Check className="size-5 text-primary-cta" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr className="bg-card/30">
|
||||
<td className="p-5 border-b border-border font-medium">PR & Influencer Outreach</td>
|
||||
<td className="p-5 border-b border-border text-center text-muted-foreground">-</td>
|
||||
<td className="p-5 border-b border-border text-center text-muted-foreground">-</td>
|
||||
<td className="p-5 border-b border-border text-center">
|
||||
<div className="flex justify-center">
|
||||
<Check className="size-5 text-primary-cta" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className="p-5 border-b border-border font-medium">Dedicated Manager</td>
|
||||
<td className="p-5 border-b border-border text-center text-muted-foreground">-</td>
|
||||
<td className="p-5 border-b border-border text-center text-muted-foreground">-</td>
|
||||
<td className="p-5 border-b border-border text-center">
|
||||
<div className="flex justify-center">
|
||||
<Check className="size-5 text-primary-cta" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -6,4 +6,5 @@ export interface Route {
|
||||
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
{ path: '/pricing', label: 'Pricing', pageFile: 'PricingPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user