Compare commits
17 Commits
version_5_
...
version_13
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd32fdd16f | ||
| 4d17db4411 | |||
|
|
c478660d98 | ||
| 14eaacf469 | |||
|
|
f65d93dd8a | ||
| f8c2be7a03 | |||
|
|
b6c3dba134 | ||
| d4db27a733 | |||
| 5f9bd0a9e2 | |||
| 3acb06b0cf | |||
|
|
773deb645a | ||
| cfa3dcc918 | |||
|
|
82c69bb865 | ||
| d1b534bab2 | |||
|
|
fe82eeaf20 | ||
| c4b0bdd80c | |||
|
|
67c6f98f9a |
12
src/App.tsx
12
src/App.tsx
@@ -1,12 +1,24 @@
|
|||||||
import { Routes, Route } from 'react-router-dom';
|
import { Routes, Route } from 'react-router-dom';
|
||||||
import Layout from './components/Layout';
|
import Layout from './components/Layout';
|
||||||
import HomePage from './pages/HomePage';
|
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';
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
return (
|
return (
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route element={<Layout />}>
|
<Route element={<Layout />}>
|
||||||
<Route path="/" element={<HomePage />} />
|
<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>
|
</Route>
|
||||||
</Routes>
|
</Routes>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -8,31 +8,31 @@ export default function Layout() {
|
|||||||
const navItems = [
|
const navItems = [
|
||||||
{
|
{
|
||||||
"name": "Home",
|
"name": "Home",
|
||||||
"href": "#home"
|
"href": "/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Features",
|
"name": "Features",
|
||||||
"href": "#features"
|
"href": "/features"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Solutions",
|
"name": "Solutions",
|
||||||
"href": "#solutions"
|
"href": "/solutions"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pricing",
|
"name": "Pricing",
|
||||||
"href": "#pricing"
|
"href": "/pricing"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Clients",
|
"name": "Clients",
|
||||||
"href": "#clients"
|
"href": "/clients"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "FAQ",
|
"name": "FAQ",
|
||||||
"href": "#faq"
|
"href": "/faq"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Metrics",
|
"name": "Metrics",
|
||||||
"href": "#metrics"
|
"href": "/metrics"
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ const HeroBillboardCarousel = ({
|
|||||||
<div className="w-content-width mx-auto overflow-hidden mask-fade-x">
|
<div className="w-content-width mx-auto overflow-hidden mask-fade-x">
|
||||||
<div className="flex w-max animate-marquee-horizontal" style={{ animationDuration: "60s" }}>
|
<div className="flex w-max animate-marquee-horizontal" style={{ animationDuration: "60s" }}>
|
||||||
{duplicated.map((item, i) => (
|
{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
|
<ImageOrVideo
|
||||||
imageSrc={item.imageSrc}
|
imageSrc={item.imageSrc}
|
||||||
videoSrc={item.videoSrc}
|
videoSrc={item.videoSrc}
|
||||||
|
|||||||
@@ -1,79 +1,82 @@
|
|||||||
import { useRef } from "react";
|
import { ArrowDown } from 'lucide-react';
|
||||||
import { useScroll, useTransform, motion } from "motion/react";
|
|
||||||
import Button from "@/components/ui/Button";
|
|
||||||
import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot";
|
|
||||||
import TextAnimation from "@/components/ui/TextAnimation";
|
|
||||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
|
||||||
|
|
||||||
type HeroBillboardScrollProps = {
|
import { cn } from '@/lib/utils';
|
||||||
tag: string;
|
import { Button } from '@/components/ui/button';
|
||||||
title: string;
|
|
||||||
description: string;
|
|
||||||
primaryButton: { text: string; href: string };
|
|
||||||
secondaryButton: { text: string; href: string };
|
|
||||||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
|
||||||
|
|
||||||
const HeroBillboardScroll = ({
|
const HeroBillboardScroll = ({
|
||||||
|
className,
|
||||||
tag,
|
tag,
|
||||||
title,
|
title,
|
||||||
description,
|
description,
|
||||||
primaryButton,
|
primaryButton,
|
||||||
secondaryButton,
|
secondaryButton,
|
||||||
imageSrc,
|
imageSrc,
|
||||||
videoSrc,
|
}: {
|
||||||
}: HeroBillboardScrollProps) => {
|
className?: string;
|
||||||
const containerRef = useRef<HTMLDivElement>(null);
|
tag?: string;
|
||||||
const { scrollYProgress } = useScroll({ target: containerRef });
|
title?: string;
|
||||||
|
description?: string;
|
||||||
const rotate = useTransform(scrollYProgress, [0, 1], [20, 0]);
|
primaryButton?: {
|
||||||
const scale = useTransform(scrollYProgress, [0, 1], [1.05, 1]);
|
text: string;
|
||||||
|
href: string;
|
||||||
|
};
|
||||||
|
secondaryButton?: {
|
||||||
|
text: string;
|
||||||
|
href: string;
|
||||||
|
};
|
||||||
|
imageSrc?: string;
|
||||||
|
}) => {
|
||||||
return (
|
return (
|
||||||
<section aria-label="Hero section" className="relative mb-20">
|
|
||||||
<HeroBackgroundSlot />
|
|
||||||
<div
|
<div
|
||||||
ref={containerRef}
|
className={cn(
|
||||||
className="pt-25 pb-20 md:py-30 perspective-distant"
|
'relative flex h-svh w-full flex-col items-center justify-center overflow-hidden',
|
||||||
|
className,
|
||||||
|
)}
|
||||||
>
|
>
|
||||||
<div className="w-content-width mx-auto">
|
<div
|
||||||
<div className="flex flex-col items-center gap-2 text-center">
|
className="absolute inset-0 z-0"
|
||||||
<span className="px-3 py-1 mb-1 text-sm card rounded">{tag}</span>
|
style={{
|
||||||
|
backgroundImage: `url(${imageSrc})`,
|
||||||
<TextAnimation
|
backgroundPosition: 'bottom',
|
||||||
text={title}
|
backgroundSize: 'cover',
|
||||||
variant="fade"
|
}}
|
||||||
gradientText={true}
|
|
||||||
tag="h1"
|
|
||||||
className="text-6xl font-medium text-balance"
|
|
||||||
/>
|
/>
|
||||||
|
<div className="absolute inset-0 z-10 bg-gradient-to-t from-black/80 to-transparent" />
|
||||||
<TextAnimation
|
<div
|
||||||
text={description}
|
className="z-20 flex flex-col items-center justify-center gap-4 p-5 text-center text-white"
|
||||||
variant="fade"
|
|
||||||
gradientText={false}
|
|
||||||
tag="p"
|
|
||||||
className="text-base md:text-lg leading-tight text-balance"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div className="flex flex-wrap justify-center gap-3 mt-3">
|
|
||||||
<Button text={primaryButton.text} href={primaryButton.href} variant="primary"/>
|
|
||||||
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary"animationDelay={0.1} />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="w-content-width mx-auto mt-8 p-3 card rounded overflow-hidden rotate-x-20 md:hidden">
|
|
||||||
<ImageOrVideo imageSrc={imageSrc} videoSrc={videoSrc} className="aspect-4/5" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<motion.div
|
|
||||||
style={{ rotateX: rotate, scale }}
|
|
||||||
className="w-content-width mx-auto mt-5 2xl:mt-2 p-3 xl:p-4 2xl:p-5 card rounded overflow-hidden hidden md:block"
|
|
||||||
>
|
>
|
||||||
<ImageOrVideo imageSrc={imageSrc} videoSrc={videoSrc} className="aspect-video" />
|
{tag && (
|
||||||
</motion.div>
|
<div className="inline-block rounded-theme-full bg-white/10 px-3 py-1 text-sm">
|
||||||
|
{tag}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{title && (
|
||||||
|
<h1 className="text-4xl font-bold md:text-6xl">
|
||||||
|
{title}
|
||||||
|
</h1>
|
||||||
|
)}
|
||||||
|
{description && (
|
||||||
|
<p className="max-w-prose text-lg text-white/80">{description}</p>
|
||||||
|
)}
|
||||||
|
<div className="mt-4 flex gap-2">
|
||||||
|
{primaryButton && (
|
||||||
|
<Button as="a" href={primaryButton.href}>
|
||||||
|
{primaryButton.text}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
{secondaryButton && (
|
||||||
|
<Button as="a" href={secondaryButton.href} variant="secondary">
|
||||||
|
{secondaryButton.text}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
className="absolute bottom-5 z-20"
|
||||||
|
>
|
||||||
|
<ArrowDown className="animate-bounce text-white" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -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="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="w-full md:w-1/2">
|
||||||
<div className="flex flex-col items-center md:items-start gap-3">
|
<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
|
<TextAnimation
|
||||||
text={title}
|
text={title}
|
||||||
@@ -52,13 +58,6 @@ const HeroSplitMediaGrid = ({
|
|||||||
<Button text={primaryButton.text} href={primaryButton.href} variant="primary"/>
|
<Button text={primaryButton.text} href={primaryButton.href} variant="primary"/>
|
||||||
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary"animationDelay={0.1} />
|
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary"animationDelay={0.1} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-3 mt-5 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>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { motion } from "motion/react";
|
|
||||||
import { useButtonClick } from "@/hooks/useButtonClick";
|
import { useButtonClick } from "@/hooks/useButtonClick";
|
||||||
import { cls } from "@/lib/utils";
|
import { cls } from "@/lib/utils";
|
||||||
import { useStyle } from "@/components/ui/useStyle";
|
import { useStyle } from "@/components/ui/useStyle";
|
||||||
@@ -23,31 +22,18 @@ interface ButtonProps {
|
|||||||
className?: string;
|
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 handleClick = useButtonClick(href, onClick);
|
||||||
|
|
||||||
const button = (
|
return (
|
||||||
<a
|
<a
|
||||||
href={href}
|
href={href}
|
||||||
onClick={handleClick}
|
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}
|
{text}
|
||||||
</a>
|
</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) => {
|
const Button = (props: ButtonProps) => {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { motion, AnimatePresence } from "motion/react";
|
|||||||
import { Plus, ArrowUpRight } from "lucide-react";
|
import { Plus, ArrowUpRight } from "lucide-react";
|
||||||
import { cls } from "@/lib/utils";
|
import { cls } from "@/lib/utils";
|
||||||
import Button from "@/components/ui/Button";
|
import Button from "@/components/ui/Button";
|
||||||
|
import { Link } from "react-router-dom";
|
||||||
|
|
||||||
interface NavbarFloatingProps {
|
interface NavbarFloatingProps {
|
||||||
logo: string;
|
logo: string;
|
||||||
@@ -10,15 +11,6 @@ interface NavbarFloatingProps {
|
|||||||
ctaButton: { text: string; href: string };
|
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 NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => {
|
||||||
const [menuOpen, setMenuOpen] = useState(false);
|
const [menuOpen, setMenuOpen] = useState(false);
|
||||||
|
|
||||||
@@ -46,7 +38,7 @@ const NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => {
|
|||||||
</AnimatePresence>
|
</AnimatePresence>
|
||||||
|
|
||||||
<nav className="fixed z-1000 top-5 left-1/2 -translate-x-1/2 w-content-width">
|
<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">
|
<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>
|
<a href="/" className="text-xl font-medium text-foreground">{logo}</a>
|
||||||
|
|
||||||
@@ -76,12 +68,12 @@ const NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => {
|
|||||||
className="overflow-hidden"
|
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="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) => (
|
{navItems.map((item, index) => (
|
||||||
<div key={item.name}>
|
<div key={item.name}>
|
||||||
<a
|
<Link
|
||||||
href={item.href}
|
to={item.href}
|
||||||
onClick={(e) => handleNavClick(e, item.href, () => setMenuOpen(false))}
|
onClick={() => setMenuOpen(false)}
|
||||||
className="group flex items-center justify-between py-3 w-full"
|
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">
|
<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"
|
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}
|
strokeWidth={2}
|
||||||
/>
|
/>
|
||||||
</a>
|
</Link>
|
||||||
{index < navItems.length - 1 && (
|
{index < navItems.length - 1 && (
|
||||||
<div className="h-px bg-accent/50" />
|
<div className="h-px bg-accent/50" />
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -138,6 +138,7 @@ body {
|
|||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: '${montserrat.variable} ${inter.variable}', sans-serif;
|
font-family: '${montserrat.variable} ${inter.variable}', sans-serif;
|
||||||
|
font-weight: 500;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
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,7 @@
|
|||||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
|
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
|
||||||
import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid';
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||||
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
|
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
|
||||||
import ProductVariantCards from '@/components/sections/product/ProductVariantCards';
|
import ProductVariantCards from '@/components/sections/product/ProductVariantCards';
|
||||||
@@ -12,7 +12,7 @@ export default function HomePage() {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroSplitMediaGrid
|
<HeroBillboardScroll
|
||||||
tag="Fintech SaaS"
|
tag="Fintech SaaS"
|
||||||
title="Unlock the Future of Financial Management"
|
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."
|
description="Finflow provides cutting-edge solutions for businesses to streamline operations, enhance security, and drive growth in the digital economy."
|
||||||
@@ -24,14 +24,7 @@ export default function HomePage() {
|
|||||||
text: "Request a Demo",
|
text: "Request a Demo",
|
||||||
href: "#contact",
|
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/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",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -49,25 +42,25 @@ export default function HomePage() {
|
|||||||
title: "Advanced Data Analytics",
|
title: "Advanced Data Analytics",
|
||||||
description: "Gain deep insights with real-time analytics and predictive modeling for smarter decisions.",
|
description: "Gain deep insights with real-time analytics and predictive modeling for smarter decisions.",
|
||||||
buttonIcon: "LineChart",
|
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",
|
title: "Enterprise-Grade Security",
|
||||||
description: "Protect your assets with our multi-layered security protocols and blockchain-backed encryption.",
|
description: "Protect your assets with our multi-layered security protocols and blockchain-backed encryption.",
|
||||||
buttonIcon: "Lock",
|
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",
|
title: "Automated Workflows",
|
||||||
description: "Streamline operations, reduce manual errors, and free up your team for strategic initiatives.",
|
description: "Streamline operations, reduce manual errors, and free up your team for strategic initiatives.",
|
||||||
buttonIcon: "Zap",
|
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",
|
title: "Global Regulatory Compliance",
|
||||||
description: "Stay compliant with ever-evolving financial regulations through automated monitoring and reporting.",
|
description: "Stay compliant with ever-evolving financial regulations through automated monitoring and reporting.",
|
||||||
buttonIcon: "CheckCircle",
|
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",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
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>;
|
||||||
|
}
|
||||||
3
src/pages/Pricing.tsx
Normal file
3
src/pages/Pricing.tsx
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
export default function PricingPage() {
|
||||||
|
return <h1>Pricing Page</h1>;
|
||||||
|
}
|
||||||
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>;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user