27 Commits

Author SHA1 Message Date
c3e1b95564 Update src/app/page.tsx 2026-02-20 23:38:00 +00:00
f44bd7e9c3 Update src/app/layout.tsx 2026-02-20 23:37:59 +00:00
0fbbc7f928 Update theme colors 2026-02-20 23:37:14 +00:00
705b0cada0 Update theme colors 2026-02-20 23:34:46 +00:00
10482b8356 Update theme colors 2026-02-20 23:33:00 +00:00
c8c2137476 Update theme colors 2026-02-20 23:32:42 +00:00
7a26546539 Update theme colors 2026-02-20 23:32:30 +00:00
5e35037349 Update src/app/features/page.tsx 2026-02-20 23:23:06 +00:00
bb548bb94c Update src/app/shop/page.tsx 2026-02-20 23:22:17 +00:00
35b74adcaf Update src/app/page.tsx 2026-02-20 23:22:16 +00:00
c9104b2479 Update src/app/features/page.tsx 2026-02-20 23:22:15 +00:00
252b99d184 Update src/app/blog/page.tsx 2026-02-20 23:22:14 +00:00
fb7a89c042 Update src/app/shop/page.tsx 2026-02-20 23:19:04 +00:00
1519f52bcf Update src/app/shop/[id]/page.tsx 2026-02-20 23:19:03 +00:00
740637cdff Update src/app/page.tsx 2026-02-20 23:19:03 +00:00
6f042946ce Update src/app/features/page.tsx 2026-02-20 23:19:02 +00:00
df09b775e2 Update src/app/blog/page.tsx 2026-02-20 23:19:01 +00:00
4bc5cdb887 Merge version_6 into main
Merge version_6 into main
2026-02-20 23:16:07 +00:00
ef2d762228 Update src/app/shop/page.tsx 2026-02-20 23:16:02 +00:00
bdfb2bcee7 Update src/app/shop/[id]/page.tsx 2026-02-20 23:16:02 +00:00
a70ec87761 Update src/app/page.tsx 2026-02-20 23:16:01 +00:00
c4fa14ce05 Update src/app/features/page.tsx 2026-02-20 23:16:00 +00:00
bd94bec778 Update src/app/blog/page.tsx 2026-02-20 23:15:59 +00:00
c2cadefab2 Merge version_6 into main
Merge version_6 into main
2026-02-20 23:12:46 +00:00
68e13bb37c Update src/app/page.tsx 2026-02-20 23:12:41 +00:00
3e0504705f Merge version_5 into main
Merge version_5 into main
2026-02-20 23:06:07 +00:00
37268a3e7a Merge version_5 into main
Merge version_5 into main
2026-02-20 23:03:33 +00:00
7 changed files with 1411 additions and 55 deletions

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterCard from '@/components/sections/footer/FooterCard';
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import { useBlogPosts } from "@/hooks/useBlogPosts";
import { Twitter, Linkedin, Github } from 'lucide-react';
@@ -47,7 +47,7 @@ export default function BlogPage() {
</div>
) : (
<div id="blog" data-section="blog">
<BlogCardThree
<BlogCardTwo
blogs={posts}
title="From Our Blog"
description="Explore our latest articles, insights, and stories from the team."
@@ -74,4 +74,4 @@ export default function BlogPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -3,16 +3,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterCard from '@/components/sections/footer/FooterCard';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import {
BarChart2,
ClipboardCheck,
Github,
Linkedin,
Shield,
Twitter,
Workflow,
Zap
Twitter
} from 'lucide-react';
const socialLinks = [
@@ -21,6 +16,15 @@ const socialLinks = [
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
];
const featuresData = [
{id: 1, title: "Intelligent Lead Scoring", description: "Automatically prioritize high-value leads with AI-driven scoring, focusing your sales efforts where they matter most.", imageSrc: "/placeholders/placeholder1.webp?_wi=1", imageAlt: "Intelligent Lead Scoring illustration"},
{id: 2, title: "Automated Task Management", description: "Streamline operations by automating repetitive tasks, freeing up your team to focus on strategic initiatives.", imageSrc: "/placeholders/placeholder2.webp?_wi=1", imageAlt: "Automated Task Management illustration"},
{id: 3, title: "Predictive Analytics Dashboard", description: "Gain foresight with advanced analytics, predicting customer churn and future trends to stay ahead of the curve.", imageSrc: "/placeholders/placeholder3.webp?_wi=1", imageAlt: "Predictive Analytics Dashboard illustration"},
{id: 4, title: "Enhanced Data Security", description: "Protect sensitive customer information with robust encryption and AI-powered threat detection, ensuring compliance and trust.", imageSrc: "/placeholders/placeholder1.webp?_wi=2", imageAlt: "Enhanced Data Security illustration"},
{id: 5, title: "Customizable Workflow Automation", description: "Tailor workflows to your unique business needs, automating processes from onboarding to customer support with ease.", imageSrc: "/placeholders/placeholder2.webp?_wi=2", imageAlt: "Customizable Workflow Automation illustration"},
{id: 6, title: "Omnichannel Customer Engagement", description: "Connect with customers across all channels seamlessly, providing consistent and personalized experiences at every touchpoint.", imageSrc: "/placeholders/placeholder3.webp?_wi=2", imageAlt: "Omnichannel Customer Engagement illustration"}
];
export default function FeaturesPage() {
return (
<ThemeProvider
@@ -47,20 +51,12 @@ export default function FeaturesPage() {
</div>
<div id="features-glow" data-section="features-glow">
<FeatureBorderGlow
<FeatureCardSix
title="Discover Our Cutting-Edge AI Capabilities"
description="Explore the powerful features that make our AI CRM platform an industry leader, designed to supercharge your business growth."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
features={[
{icon:Zap,title:"Intelligent Lead Scoring",description:"Automatically prioritize high-value leads with AI-driven scoring, focusing your sales efforts where they matter most."},
{icon:Workflow,title:"Automated Task Management",description:"Streamline operations by automating repetitive tasks, freeing up your team to focus on strategic initiatives."},
{icon:BarChart2,title:"Predictive Analytics Dashboard",description:"Gain foresight with advanced analytics, predicting customer churn and future trends to stay ahead of the curve."},
{icon:Shield,title:"Enhanced Data Security",description:"Protect sensitive customer information with robust encryption and AI-powered threat detection, ensuring compliance and trust."},
{icon:ClipboardCheck,title:"Customizable Workflow Automation",description:"Tailor workflows to your unique business needs, automating processes from onboarding to customer support with ease."},
{icon:BarChart2,title:"Omnichannel Customer Engagement",description:"Connect with customers across all channels seamlessly, providing consistent and personalized experiences at every touchpoint."}
]}
features={featuresData}
tag="Key Features"
className="py-16 md:py-24"
/>
@@ -80,4 +76,4 @@ export default function FeaturesPage() {
</div>
</ThemeProvider>
);
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -12,21 +12,12 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard';
import {
BarChart2,
ClipboardCheck,
Github,
Globe,
Heart,
Linkedin,
Mail,
MessageSquare,
Smile,
Target,
TrendingUp,
Twitter,
User,
Users,
Workflow,
Zap
} from 'lucide-react';
@@ -56,17 +47,17 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
<HeroLogoBillboardSplit
logoText="CRM AI"
description="Unleash the power of artificial intelligence to automate tasks, gain deeper customer insights, and drive unparalleled growth for your business."
background={{variant:"sparkles-gradient"}}
buttons={[{text:"Get Started Free",href:"#contact"},{text:"Watch Demo",href:"#features"}]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-user-friendly-interface-showcasing-ai--1771626574716-a33c15c9.png?_wi=1"
imageAlt="AI-Powered Automation Interface"
layoutOrder="default"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771630687370-xxt7k3kx.png"
imageAlt="AI CRM Platform Dashboard"
mediaAnimation="opacity"
frameStyle="card"
className="min-h-[calc(100svh-var(--navbar-height))] md:min-h-[calc(100vh-var(--navbar-height))] pt-[var(--navbar-height))]"
/>
</div>
@@ -194,4 +185,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -51,7 +51,9 @@ function ProductPageContent({ params }: ProductPageProps) {
getCheckoutItems,
} = useCart();
const { buyNow, checkout, isLoading: isCheckoutLoading } = useCheckout();
const {
buyNow, checkout, isLoading: isCheckoutLoading
} = useCheckout();
const handleAddToCart = useCallback(() => {
const item = createCartItem();
@@ -260,4 +262,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -162,4 +162,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -2,21 +2,21 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #080200;;;
--card: #1a0d0b;;;
--foreground: #ffe6d5;;;
--primary-cta: #FF7B05;;;
--secondary-cta: #170b07;;;
--accent: #7b5e4a;;;
--background-accent: #b8541e;;; */
/* --background: #080200;;;;;;;;
--card: #151515;;;;;;;;
--foreground: #CEE7Ff;;;;;;;;
--primary-cta: #106EFB;;;;;;;;
--secondary-cta: #170b07;;;;;;;;
--accent: #E6F0Ff;;;;;;;;
--background-accent: #106EFB;;;;;;;; */
--background: #080200;;;
--card: #1a0d0b;;;
--foreground: #ffe6d5;;;
--primary-cta: #FF7B05;;;
--secondary-cta: #170b07;;;
--accent: #7b5e4a;;;
--background-accent: #b8541e;;;
--background: #080200;;;;;;;;
--card: #151515;;;;;;;;
--foreground: #CEE7Ff;;;;;;;;
--primary-cta: #106EFB;;;;;;;;
--secondary-cta: #170b07;;;;;;;;
--accent: #E6F0Ff;;;;;;;;
--background-accent: #106EFB;;;;;;;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);