Compare commits
47 Commits
version_1_
...
version_24
| Author | SHA1 | Date | |
|---|---|---|---|
| ecc8d52819 | |||
|
|
553301f21f | ||
| ab9cc6e162 | |||
|
|
711960995b | ||
| e893d918d7 | |||
|
|
7404a157b2 | ||
| 27cc7da658 | |||
|
|
bccb7abdeb | ||
| fcbc17c1c3 | |||
| b7e9576381 | |||
| 13511fe702 | |||
| 5c362cc784 | |||
|
|
569c3a2c4c | ||
| 36d3094e78 | |||
| 7cbc4bba64 | |||
| ee93b83224 | |||
|
|
5340d504bc | ||
| 414b73fb8d | |||
|
|
6327404623 | ||
| 2040dec3f4 | |||
|
|
cd27a07b18 | ||
| 816ee0497e | |||
|
|
5634cd7551 | ||
| 4b7511b37c | |||
| d5749bff3a | |||
|
|
93b46a29dd | ||
|
|
b609be3d1e | ||
| 9b260fc74f | |||
|
|
dd32fdd16f | ||
| 4d17db4411 | |||
|
|
c478660d98 | ||
| 14eaacf469 | |||
|
|
f65d93dd8a | ||
| f8c2be7a03 | |||
|
|
b6c3dba134 | ||
| d4db27a733 | |||
| 5f9bd0a9e2 | |||
| 3acb06b0cf | |||
|
|
773deb645a | ||
| cfa3dcc918 | |||
|
|
82c69bb865 | ||
| d1b534bab2 | |||
|
|
fe82eeaf20 | ||
| c4b0bdd80c | |||
|
|
67c6f98f9a | ||
| a010765c38 | |||
|
|
dad983035f |
16
src/App.tsx
16
src/App.tsx
@@ -1,12 +1,28 @@
|
||||
import { Routes, Route } from 'react-router-dom';
|
||||
import Layout from './components/Layout';
|
||||
import HomePage from './pages/HomePage';
|
||||
import FeaturesPage from './pages/Features';
|
||||
import SolutionsPage from './pages/Solutions';
|
||||
import PricingPage from './pages/Pricing';
|
||||
import ClientsPage from './pages/Clients';
|
||||
import FaqPage from './pages/Faq';
|
||||
import MetricsPage from './pages/Metrics';
|
||||
import AboutPage from './pages/misc/AboutPage';
|
||||
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<Routes>
|
||||
<Route element={<Layout />}>
|
||||
<Route path="/" element={<HomePage />} />
|
||||
<Route path="/features" element={<FeaturesPage />} />
|
||||
<Route path="/solutions" element={<SolutionsPage />} />
|
||||
<Route path="/pricing" element={<PricingPage />} />
|
||||
<Route path="/clients" element={<ClientsPage />} />
|
||||
<Route path="/faq" element={<FaqPage />} />
|
||||
<Route path="/metrics" element={<MetricsPage />} />
|
||||
<Route path="/about" element={<AboutPage />} />
|
||||
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
|
||||
@@ -8,32 +8,37 @@ export default function Layout() {
|
||||
const navItems = [
|
||||
{
|
||||
"name": "Home",
|
||||
"href": "#home"
|
||||
"href": "/"
|
||||
},
|
||||
{
|
||||
"name": "Features",
|
||||
"href": "#features"
|
||||
"href": "/features"
|
||||
},
|
||||
{
|
||||
"name": "Solutions",
|
||||
"href": "#solutions"
|
||||
"href": "/solutions"
|
||||
},
|
||||
{
|
||||
"name": "Pricing",
|
||||
"href": "#pricing"
|
||||
"href": "/pricing"
|
||||
},
|
||||
{
|
||||
"name": "Clients",
|
||||
"href": "#clients"
|
||||
"href": "/clients"
|
||||
},
|
||||
{
|
||||
"name": "FAQ",
|
||||
"href": "#faq"
|
||||
"href": "/faq"
|
||||
},
|
||||
{
|
||||
"name": "Metrics",
|
||||
"href": "#metrics"
|
||||
}
|
||||
"href": "/metrics"
|
||||
},
|
||||
{
|
||||
"name": "About",
|
||||
"href": "/about"
|
||||
},
|
||||
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -77,7 +82,7 @@ export default function Layout() {
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Careers",
|
||||
|
||||
@@ -48,10 +48,19 @@ const FooterBasic = ({
|
||||
))}
|
||||
</div>
|
||||
))}
|
||||
<div className="w-full md:w-1/3">
|
||||
<iframe
|
||||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d214827.9391993325!2d-117.32725643033326!3d32.74946396037413!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80d9530fad921e4b%3A0xd3a21fdfd15df79!2sSan%20Diego%2C%20CA%2C%20USA!5e0!3m2!1sen!2sua!4v1715192157289!5m2!1sen!2sua"
|
||||
width="100%"
|
||||
height="200"
|
||||
style={{ border: 0 }}
|
||||
allowFullScreen
|
||||
loading="lazy"
|
||||
referrerPolicy="no-referrer-when-downgrade"
|
||||
></iframe>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="w-full h-px bg-foreground/20" />
|
||||
|
||||
<div className="w-full flex items-center justify-between pt-5">
|
||||
<span className="text-sm opacity-50">{leftText}</span>
|
||||
<span className="text-sm opacity-50">{rightText}</span>
|
||||
|
||||
@@ -56,7 +56,7 @@ const HeroBillboardCarousel = ({
|
||||
<div className="w-content-width mx-auto overflow-hidden mask-fade-x">
|
||||
<div className="flex w-max animate-marquee-horizontal" style={{ animationDuration: "60s" }}>
|
||||
{duplicated.map((item, i) => (
|
||||
<div key={i} className="shrink-0 w-60 md:w-75 2xl:w-80 aspect-4/5 mr-3 md:mr-5 p-1.5 card rounded-lg overflow-hidden">
|
||||
<div key={i} className="shrink-0 w-40 md:w-50 2xl:w-60 aspect-4/5 mr-3 md:mr-5 p-1.5 card rounded-lg overflow-hidden">
|
||||
<ImageOrVideo
|
||||
imageSrc={item.imageSrc}
|
||||
videoSrc={item.videoSrc}
|
||||
|
||||
@@ -30,7 +30,13 @@ const HeroSplitMediaGrid = ({
|
||||
<div className="flex flex-col md:flex-row items-center gap-10 md:gap-20 w-content-width mx-auto">
|
||||
<div className="w-full md:w-1/2">
|
||||
<div className="flex flex-col items-center md:items-start gap-3">
|
||||
<span className="px-3 py-1 mb-1 text-sm card rounded">{tag}</span>
|
||||
<div className="flex items-center gap-3 mb-3 p-3 card rounded-theme">
|
||||
<div className="relative flex items-center justify-center w-4 h-4">
|
||||
<div className="absolute w-full h-full bg-green-500 rounded-full animate-ping"></div>
|
||||
<div className="w-2 h-2 bg-green-500 rounded-full"></div>
|
||||
</div>
|
||||
<span className="text-sm">2,345 people active now</span>
|
||||
</div>
|
||||
|
||||
<TextAnimation
|
||||
text={title}
|
||||
|
||||
96
src/components/sections/pricing/FeatureComparison.tsx
Normal file
96
src/components/sections/pricing/FeatureComparison.tsx
Normal file
@@ -0,0 +1,96 @@
|
||||
import { CheckCircle, Minus } from 'lucide-react';
|
||||
import { cn } from '@/lib/utils';
|
||||
|
||||
const features = [
|
||||
{
|
||||
category: 'Core Features',
|
||||
items: [
|
||||
{ name: 'Basic Analytics', tiers: [true, true, true] },
|
||||
{ name: 'Standard Security', tiers: [true, true, true] },
|
||||
{ name: '500 Transactions/month', tiers: [true, false, false] },
|
||||
{ name: 'Unlimited Transactions', tiers: [false, true, true] },
|
||||
{ name: 'Automated Reporting', tiers: [false, true, true] },
|
||||
],
|
||||
},
|
||||
{
|
||||
category: 'Support & Services',
|
||||
items: [
|
||||
{ name: 'Email Support', tiers: [true, true, true] },
|
||||
{ name: '24/7 Priority Support', tiers: [false, true, true] },
|
||||
{ name: 'Dedicated Account Manager', tiers: [false, false, true] },
|
||||
],
|
||||
},
|
||||
{
|
||||
category: 'Enterprise Solutions',
|
||||
items: [
|
||||
{ name: 'Custom Integrations', tiers: [false, false, true] },
|
||||
{ name: 'On-premise Deployment', tiers: [false, false, true] },
|
||||
{ name: 'SLA & Compliance Guarantees', tiers: [false, false, true] },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const tiers = [
|
||||
{ name: 'Startups', href: '#', price: '$99' },
|
||||
{ name: 'Growing Businesses', href: '#', price: '$499' },
|
||||
{ name: 'Enterprises', href: '#', price: 'Custom' },
|
||||
];
|
||||
|
||||
export default function FeatureComparison() {
|
||||
return (
|
||||
<div className="isolate bg-background-subtle">
|
||||
<div className="mx-auto max-w-7xl px-6 py-24 sm:py-32 lg:px-8">
|
||||
<div className="mx-auto max-w-2xl text-center lg:max-w-4xl">
|
||||
<h2 className="text-base font-semibold leading-7 text-brand">Pricing</h2>
|
||||
<p className="mt-2 text-4xl font-bold tracking-tight text-foreground sm:text-5xl">
|
||||
The right price for you, whoever you are
|
||||
</p>
|
||||
</div>
|
||||
<p className="mx-auto mt-6 max-w-2xl text-center text-lg leading-8 text-foreground-subtle">
|
||||
Choose the plan that best fits your needs, from small startups to large enterprises.
|
||||
</p>
|
||||
|
||||
{/* Comparison table */}
|
||||
<div className="mt-16">
|
||||
<div className="grid grid-cols-4 gap-y-6 sm:grid-cols-4">
|
||||
{tiers.map((tier, index) => (
|
||||
<div key={tier.name} className={cn('col-start-2 sm:col-start-2', {
|
||||
'sm:col-start-3': index === 1,
|
||||
'sm:col-start-4': index === 2,
|
||||
})}>
|
||||
<h3 className="text-lg font-semibold leading-6 text-foreground text-center">{tier.name}</h3>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<div className="mt-8 space-y-4">
|
||||
{features.map((category) => (
|
||||
<div key={category.category}>
|
||||
<h4 className="text-lg font-semibold leading-6 text-foreground">{category.category}</h4>
|
||||
<div className="relative mt-6">
|
||||
<div className="absolute inset-y-0 left-0 w-full bg-background-subtle" aria-hidden="true" />
|
||||
<div className="relative grid grid-cols-4">
|
||||
{category.items.map((item) => (
|
||||
<div key={item.name} className="col-span-4 grid grid-cols-4 items-center border-b border-border-muted py-4">
|
||||
<div className="col-span-1 text-sm font-medium leading-6 text-foreground-subtle">{item.name}</div>
|
||||
{item.tiers.map((included, i) => (
|
||||
<div key={i} className="col-span-1 flex justify-center">
|
||||
{included ? (
|
||||
<CheckCircle className="h-5 w-5 text-brand" aria-hidden="true" />
|
||||
) : (
|
||||
<Minus className="h-5 w-5 text-foreground-muted" aria-hidden="true" />
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -68,7 +68,10 @@ const PricingMediaCards = ({
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col justify-center gap-5 w-full md:w-1/2">
|
||||
<span className="px-3 py-1 w-fit text-sm card rounded">{plan.price}{plan.period}</span>
|
||||
<div className="flex items-baseline gap-2">
|
||||
<span className="text-5xl font-bold">{plan.price}</span>
|
||||
<span className="text-sm text-muted-foreground">/{plan.period}</span>
|
||||
</div>
|
||||
<h3 className="text-4xl md:text-5xl font-medium truncate">{plan.tag}</h3>
|
||||
|
||||
<div className="flex flex-col gap-3">
|
||||
|
||||
139
src/components/sections/pricing/PricingSection.tsx
Normal file
139
src/components/sections/pricing/PricingSection.tsx
Normal file
@@ -0,0 +1,139 @@
|
||||
import { CheckIcon } from 'lucide-react';
|
||||
|
||||
const tiers = [
|
||||
{
|
||||
name: 'Starter',
|
||||
id: 'tier-starter',
|
||||
href: '#',
|
||||
price: { monthly: '$49', annually: '$490' },
|
||||
description: 'For small teams just getting started.',
|
||||
features: [
|
||||
'Up to 1,000 subscribers',
|
||||
'Basic analytics',
|
||||
'Email support',
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Team',
|
||||
id: 'tier-team',
|
||||
href: '#',
|
||||
price: { monthly: '$99', annually: '$990' },
|
||||
description: 'For growing teams that need more power.',
|
||||
features: [
|
||||
'Up to 5,000 subscribers',
|
||||
'Advanced analytics',
|
||||
'Priority email support',
|
||||
'Integration with popular tools',
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Enterprise',
|
||||
id: 'tier-enterprise',
|
||||
href: '#',
|
||||
price: { monthly: 'Contact us', annually: 'Contact us' },
|
||||
description: 'For large organizations with custom needs.',
|
||||
features: [
|
||||
'Unlimited subscribers',
|
||||
'Custom analytics and reporting',
|
||||
'24/7 phone and email support',
|
||||
'Dedicated account manager',
|
||||
'Custom integrations',
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
export default function PricingSection() {
|
||||
return (
|
||||
<div className="isolate overflow-hidden bg-gray-900">
|
||||
<div className="mx-auto max-w-7xl px-6 pb-96 pt-24 text-center sm:pt-32 lg:px-8">
|
||||
<div className="mx-auto max-w-4xl">
|
||||
<h2 className="text-base font-semibold leading-7 text-indigo-400">Pricing</h2>
|
||||
<p className="mt-2 text-4xl font-bold tracking-tight text-white sm:text-5xl">
|
||||
The right price for you, <br className="hidden sm:inline lg:hidden" />
|
||||
whoever you are
|
||||
</p>
|
||||
</div>
|
||||
<div className="relative mt-6">
|
||||
<p className="mx-auto max-w-2xl text-lg leading-8 text-white/60">
|
||||
Choose a plan that fits your needs. All plans come with a 30-day free trial.
|
||||
</p>
|
||||
<svg
|
||||
viewBox="0 0 1208 1024"
|
||||
className="absolute -top-10 left-1/2 -z-10 h-[64rem] -translate-x-1/2 [mask-image:radial-gradient(closest-side,white,transparent)] sm:-top-12 md:-top-20 lg:-top-12 xl:top-0"
|
||||
>
|
||||
<ellipse
|
||||
cx={604}
|
||||
cy={512}
|
||||
fill="url(#6d1bd035-0dd1-437e-93fa-59d316231eb0)"
|
||||
rx={604}
|
||||
ry={512}
|
||||
/>
|
||||
<defs>
|
||||
<radialGradient id="6d1bd035-0dd1-437e-93fa-59d316231eb0">
|
||||
<stop stopColor="#7775D6" />
|
||||
<stop offset={1} stopColor="#E935C1" />
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
<div className="flow-root bg-white pb-24 sm:pb-32">
|
||||
<div className="-mt-80">
|
||||
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
||||
<div className="mx-auto grid max-w-md grid-cols-1 gap-8 lg:max-w-4xl lg:grid-cols-2">
|
||||
{tiers.map((tier) => (
|
||||
<div
|
||||
key={tier.id}
|
||||
className="flex flex-col justify-between rounded-3xl bg-white p-8 shadow-xl ring-1 ring-gray-900/10 sm:p-10"
|
||||
>
|
||||
<div>
|
||||
<h3 id={tier.id} className="text-base font-semibold leading-7 text-indigo-600">
|
||||
{tier.name}
|
||||
</h3>
|
||||
<div className="mt-4 flex items-baseline gap-x-2">
|
||||
<span className="text-5xl font-bold tracking-tight text-gray-900">{tier.price.monthly}</span>
|
||||
<span className="text-base font-semibold leading-7 text-gray-600">/month</span>
|
||||
</div>
|
||||
<p className="mt-6 text-base leading-7 text-gray-600">{tier.description}</p>
|
||||
<ul
|
||||
role="list"
|
||||
className="mt-10 space-y-4 text-sm leading-6 text-gray-600"
|
||||
>
|
||||
{tier.features.map((feature) => (
|
||||
<li key={feature} className="flex gap-x-3">
|
||||
<CheckIcon className="h-6 w-5 flex-none text-indigo-600" aria-hidden="true" />
|
||||
{feature}
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
<a
|
||||
href={tier.href}
|
||||
aria-describedby={tier.id}
|
||||
className="mt-8 block rounded-md bg-indigo-600 px-3.5 py-2 text-center text-sm font-semibold leading-6 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
|
||||
>
|
||||
Get started today
|
||||
</a>
|
||||
</div>
|
||||
))}
|
||||
<div className="flex flex-col items-start gap-x-8 gap-y-6 rounded-3xl p-8 ring-1 ring-gray-900/10 sm:gap-y-10 sm:p-10 lg:col-span-2 lg:flex-row lg:items-center">
|
||||
<div className="lg:min-w-0 lg:flex-1">
|
||||
<h3 className="text-lg font-semibold leading-8 tracking-tight text-indigo-600">Enterprise Plan</h3>
|
||||
<p className="mt-1 text-base leading-7 text-gray-600">
|
||||
For large organizations with custom needs, contact us for a custom quote.
|
||||
</p>
|
||||
</div>
|
||||
<a
|
||||
href="#"
|
||||
className="rounded-md px-3.5 py-2 text-sm font-semibold leading-6 text-indigo-600 ring-1 ring-inset ring-indigo-200 hover:ring-indigo-300 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
|
||||
>
|
||||
Contact us <span aria-hidden="true">→</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
"use client";
|
||||
|
||||
import { motion } from "motion/react";
|
||||
import { useButtonClick } from "@/hooks/useButtonClick";
|
||||
import { cls } from "@/lib/utils";
|
||||
import { useStyle } from "@/components/ui/useStyle";
|
||||
@@ -23,31 +22,18 @@ interface ButtonProps {
|
||||
className?: string;
|
||||
}
|
||||
|
||||
const DefaultButton = ({ text, variant = "primary", href = "#", onClick, animate = true, animationDelay = 0, className = "" }: ButtonProps) => {
|
||||
const DefaultButton = ({ text, variant = "primary", href = "#", onClick, className = "" }: ButtonProps) => {
|
||||
const handleClick = useButtonClick(href, onClick);
|
||||
|
||||
const button = (
|
||||
return (
|
||||
<a
|
||||
href={href}
|
||||
onClick={handleClick}
|
||||
className={cls("flex items-center justify-center h-9 px-6 text-sm rounded cursor-pointer", variant === "primary" ? "primary-button text-primary-cta-text" : "secondary-button text-secondary-cta-text", className)}
|
||||
className={cls("flex items-center justify-center h-9 px-6 text-sm rounded cursor-pointer transform transition-transform duration-200 hover:scale-105 active:scale-95", variant === "primary" ? "primary-button text-primary-cta-text shadow-[0_4px_0_0_rgba(0,0,0,0.2)] hover:shadow-[0_6px_0_0_rgba(0,0,0,0.2)] active:shadow-[0_2px_0_0_rgba(0,0,0,0.2)]" : "secondary-button text-secondary-cta-text shadow-[0_4px_0_0_rgba(0,0,0,0.2)] hover:shadow-[0_6px_0_0_rgba(0,0,0,0.2)] active:shadow-[0_2px_0_0_rgba(0,0,0,0.2)]", className)}
|
||||
>
|
||||
{text}
|
||||
</a>
|
||||
);
|
||||
|
||||
if (!animate) return button;
|
||||
|
||||
return (
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true }}
|
||||
transition={{ duration: 0.6, delay: animationDelay, ease: "easeOut" }}
|
||||
>
|
||||
{button}
|
||||
</motion.div>
|
||||
);
|
||||
};
|
||||
|
||||
const Button = (props: ButtonProps) => {
|
||||
|
||||
@@ -3,6 +3,7 @@ import { motion, AnimatePresence } from "motion/react";
|
||||
import { Plus, ArrowUpRight } from "lucide-react";
|
||||
import { cls } from "@/lib/utils";
|
||||
import Button from "@/components/ui/Button";
|
||||
import { Link } from "react-router-dom";
|
||||
|
||||
interface NavbarFloatingProps {
|
||||
logo: string;
|
||||
@@ -10,15 +11,6 @@ interface NavbarFloatingProps {
|
||||
ctaButton: { text: string; href: string };
|
||||
}
|
||||
|
||||
const handleNavClick = (e: React.MouseEvent<HTMLAnchorElement>, href: string, onClose?: () => void) => {
|
||||
if (href.startsWith("#")) {
|
||||
e.preventDefault();
|
||||
const element = document.getElementById(href.slice(1));
|
||||
element?.scrollIntoView({ behavior: "smooth", block: "start" });
|
||||
}
|
||||
onClose?.();
|
||||
};
|
||||
|
||||
const NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => {
|
||||
const [menuOpen, setMenuOpen] = useState(false);
|
||||
|
||||
@@ -46,7 +38,7 @@ const NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => {
|
||||
</AnimatePresence>
|
||||
|
||||
<nav className="fixed z-1000 top-5 left-1/2 -translate-x-1/2 w-content-width">
|
||||
<div className="mx-auto w-full md:w-1/2 overflow-hidden rounded backdrop-blur-sm card">
|
||||
<div className="mx-auto w-full md:w-1/2 overflow-hidden rounded-theme-capped bg-white/10 backdrop-blur-lg border border-white/20 shadow-lg">
|
||||
<div className="relative z-10 flex items-center justify-between gap-3 xl:gap-4 2xl:gap-5 p-3 xl:p-4 2xl:p-5">
|
||||
<a href="/" className="text-xl font-medium text-foreground">{logo}</a>
|
||||
|
||||
@@ -76,12 +68,12 @@ const NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => {
|
||||
className="overflow-hidden"
|
||||
>
|
||||
<div className="flex flex-col gap-3 xl:gap-4 2xl:gap-5 p-3 xl:p-4 2xl:p-5 pt-0 xl:pt-0 2xl:pt-0">
|
||||
<div className="px-3 xl:px-4 2xl:px-5 py-0 md:py-1 2xl:py-2 rounded card">
|
||||
<div className="px-3 xl:px-4 2xl:px-5 py-0 md:py-1 2xl:py-2 rounded-theme-capped bg-white/10">
|
||||
{navItems.map((item, index) => (
|
||||
<div key={item.name}>
|
||||
<a
|
||||
href={item.href}
|
||||
onClick={(e) => handleNavClick(e, item.href, () => setMenuOpen(false))}
|
||||
<Link
|
||||
to={item.href}
|
||||
onClick={() => setMenuOpen(false)}
|
||||
className="group flex items-center justify-between py-3 w-full"
|
||||
>
|
||||
<span className="text-xl md:text-2xl font-medium text-foreground group-hover:ml-3 transition-[margin] duration-300">
|
||||
@@ -91,7 +83,7 @@ const NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => {
|
||||
className="h-(--text-xl) md:h-(--text-2xl) w-auto text-foreground group-hover:rotate-45 group-hover:mr-3 transition-all duration-300"
|
||||
strokeWidth={2}
|
||||
/>
|
||||
</a>
|
||||
</Link>
|
||||
{index < navItems.length - 1 && (
|
||||
<div className="h-px bg-accent/50" />
|
||||
)}
|
||||
|
||||
@@ -138,6 +138,7 @@ body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: '${montserrat.variable} ${inter.variable}', sans-serif;
|
||||
font-weight: 500;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
|
||||
3
src/pages/Clients.tsx
Normal file
3
src/pages/Clients.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function ClientsPage() {
|
||||
return <h1>Clients Page</h1>;
|
||||
}
|
||||
3
src/pages/Faq.tsx
Normal file
3
src/pages/Faq.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function FaqPage() {
|
||||
return <h1>FAQ Page</h1>;
|
||||
}
|
||||
3
src/pages/Features.tsx
Normal file
3
src/pages/Features.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function FeaturesPage() {
|
||||
return <h1>Features Page</h1>;
|
||||
}
|
||||
3
src/pages/Home.tsx
Normal file
3
src/pages/Home.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function HomePage() {
|
||||
return <h1>Home Page</h1>;
|
||||
}
|
||||
@@ -1,7 +1,8 @@
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
|
||||
import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
|
||||
import ProductVariantCards from '@/components/sections/product/ProductVariantCards';
|
||||
@@ -12,7 +13,7 @@ export default function HomePage() {
|
||||
return (
|
||||
<>
|
||||
<div id="home" data-section="home">
|
||||
<HeroSplitMediaGrid
|
||||
<HeroBillboardScroll
|
||||
tag="Fintech SaaS"
|
||||
title="Unlock the Future of Financial Management"
|
||||
description="Finflow provides cutting-edge solutions for businesses to streamline operations, enhance security, and drive growth in the digital economy."
|
||||
@@ -24,14 +25,7 @@ export default function HomePage() {
|
||||
text: "Request a Demo",
|
||||
href: "#contact",
|
||||
}}
|
||||
items={[
|
||||
{
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-futuristic-dark-themed-financial-dashb-1778165802560-ef94d27a.png",
|
||||
},
|
||||
{
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/another-view-of-a-sleek-dark-fintech-das-1778165802942-0ef804ae.png",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-futuristic-dark-themed-financial-dashb-1778165802560-ef94d27a.png"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -49,25 +43,25 @@ export default function HomePage() {
|
||||
title: "Advanced Data Analytics",
|
||||
description: "Gain deep insights with real-time analytics and predictive modeling for smarter decisions.",
|
||||
buttonIcon: "LineChart",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-abstract-representation-of-complex-fi-1778165803491-13ee1608.png",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-abstract-representation-of-complex-fi-1778165803491-13ee1608.png?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Enterprise-Grade Security",
|
||||
description: "Protect your assets with our multi-layered security protocols and blockchain-backed encryption.",
|
||||
buttonIcon: "Lock",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-visual-metaphor-for-advanced-financial-1778165802292-f7d22bff.png",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-visual-metaphor-for-advanced-financial-1778165802292-f7d22bff.png?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Automated Workflows",
|
||||
description: "Streamline operations, reduce manual errors, and free up your team for strategic initiatives.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-illustration-of-financial-process-aut-1778165804096-d3ea01b2.png",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-illustration-of-financial-process-aut-1778165804096-d3ea01b2.png?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Global Regulatory Compliance",
|
||||
description: "Stay compliant with ever-evolving financial regulations through automated monitoring and reporting.",
|
||||
buttonIcon: "CheckCircle",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-visual-concept-for-regulatory-complian-1778165802615-1e994baa.png",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-visual-concept-for-regulatory-complian-1778165802615-1e994baa.png?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -161,7 +155,7 @@ export default function HomePage() {
|
||||
text: "Start Free Trial",
|
||||
href: "#",
|
||||
},
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-minimalist-graphic-representing-a-star-1778165800791-0c8ad310.png",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-minimalist-graphic-representing-a-star-1778165800791-0c8ad310.png?_wi=1",
|
||||
},
|
||||
{
|
||||
tag: "For Growing Businesses",
|
||||
@@ -178,7 +172,7 @@ export default function HomePage() {
|
||||
text: "Get Pro Plan",
|
||||
href: "#",
|
||||
},
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-abstract-image-symbolizing-a-growing--1778165802033-739245ed.png",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-abstract-image-symbolizing-a-growing--1778165802033-739245ed.png?_wi=1",
|
||||
},
|
||||
{
|
||||
tag: "For Enterprises",
|
||||
@@ -195,7 +189,7 @@ export default function HomePage() {
|
||||
text: "Contact Sales",
|
||||
href: "#contact",
|
||||
},
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-powerful-abstract-representation-of-a--1778165802382-ab2df0f2.png",
|
||||
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-powerful-abstract-representation-of-a--1778165802382-ab2df0f2.png?_wi=1",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
3
src/pages/Metrics.tsx
Normal file
3
src/pages/Metrics.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function MetricsPage() {
|
||||
return <h1>Metrics Page</h1>;
|
||||
}
|
||||
64
src/pages/Pricing.tsx
Normal file
64
src/pages/Pricing.tsx
Normal file
@@ -0,0 +1,64 @@
|
||||
import PricingCenteredCards from '@/components/sections/pricing/PricingCenteredCards';
|
||||
import FeatureComparison from '@/components/sections/pricing/FeatureComparison';
|
||||
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<>
|
||||
<PricingCenteredCards
|
||||
tag="Flexible Pricing"
|
||||
title="Plans Designed for Growth"
|
||||
description="Choose the Finflow plan that best fits your business size and evolving financial demands."
|
||||
plans={[
|
||||
{
|
||||
tag: 'For Startups',
|
||||
price: '$99',
|
||||
period: 'month',
|
||||
features: [
|
||||
'Basic Analytics',
|
||||
'Standard Security',
|
||||
'500 Transactions/month',
|
||||
'Email Support',
|
||||
],
|
||||
primaryButton: {
|
||||
text: 'Start Free Trial',
|
||||
href: '#',
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: 'For Growing Businesses',
|
||||
price: '$499',
|
||||
period: 'month',
|
||||
features: [
|
||||
'Advanced Analytics',
|
||||
'Enhanced Security',
|
||||
'Unlimited Transactions',
|
||||
'24/7 Priority Support',
|
||||
'Automated Reporting',
|
||||
],
|
||||
primaryButton: {
|
||||
text: 'Get Pro Plan',
|
||||
href: '#',
|
||||
},
|
||||
},
|
||||
{
|
||||
tag: 'For Enterprises',
|
||||
price: 'Custom',
|
||||
period: '',
|
||||
features: [
|
||||
'All Pro Features',
|
||||
'Dedicated Account Manager',
|
||||
'Custom Integrations',
|
||||
'On-premise Deployment',
|
||||
'SLA & Compliance Guarantees',
|
||||
],
|
||||
primaryButton: {
|
||||
text: 'Contact Sales',
|
||||
href: '#contact',
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<FeatureComparison />
|
||||
</>
|
||||
);
|
||||
}
|
||||
3
src/pages/Solutions.tsx
Normal file
3
src/pages/Solutions.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function SolutionsPage() {
|
||||
return <h1>Solutions Page</h1>;
|
||||
}
|
||||
43
src/pages/misc/AboutPage.tsx
Normal file
43
src/pages/misc/AboutPage.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
import React from 'react';
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import TeamMinimalCards from '@/components/sections/team/TeamMinimalCards';
|
||||
|
||||
const AboutPage: React.FC = () => {
|
||||
return (
|
||||
<>
|
||||
<AboutText
|
||||
title="Our mission is to empower businesses with cutting-edge financial solutions."
|
||||
primaryButton={{ text: 'Get Started', href: '/pricing' }}
|
||||
secondaryButton={{ text: 'Contact Us', href: '#contact' }}
|
||||
/>
|
||||
<TeamMinimalCards
|
||||
tag="Our Team"
|
||||
title="Meet the experts behind our success"
|
||||
members={[
|
||||
{
|
||||
name: 'John Doe',
|
||||
role: 'CEO & Founder',
|
||||
imageSrc: 'https://via.placeholder.com/500x500?_wi=1',
|
||||
},
|
||||
{
|
||||
name: 'Jane Smith',
|
||||
role: 'Chief Technology Officer',
|
||||
imageSrc: 'https://via.placeholder.com/500x500?_wi=2',
|
||||
},
|
||||
{
|
||||
name: 'Peter Jones',
|
||||
role: 'Head of Product',
|
||||
imageSrc: 'https://via.placeholder.com/500x500?_wi=3',
|
||||
},
|
||||
{
|
||||
name: 'Mary Williams',
|
||||
role: 'Lead Designer',
|
||||
imageSrc: 'https://via.placeholder.com/500x500?_wi=4',
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default AboutPage;
|
||||
@@ -6,4 +6,5 @@ export interface Route {
|
||||
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user