Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f99b7a3394 | |||
| ff0450246c | |||
| 3b4221ab68 | |||
| ab22518c4e | |||
| e7794b8108 | |||
| 8687374044 | |||
| 01e4d8cdbc | |||
| 2121ee99be | |||
| 25de5d94d6 | |||
| 7856567db5 | |||
| 45522c6814 | |||
| c3e1b95564 | |||
| f44bd7e9c3 | |||
| 64bece8798 | |||
| 0fbbc7f928 | |||
| 9ac7ad035e | |||
| 705b0cada0 | |||
| 13784703f2 | |||
| 10482b8356 | |||
| 933b6ba37b | |||
| c8c2137476 | |||
| bf6c96a267 | |||
| 7a26546539 | |||
| e142deb68e | |||
| 5e35037349 | |||
| 62866864e6 | |||
| bb548bb94c | |||
| 35b74adcaf | |||
| c9104b2479 | |||
| 252b99d184 | |||
| 8e0056e94a | |||
| fb7a89c042 | |||
| 1519f52bcf | |||
| 740637cdff | |||
| 6f042946ce | |||
| df09b775e2 | |||
| 4bc5cdb887 | |||
| c2cadefab2 |
@@ -3,7 +3,7 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
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 { useBlogPosts } from "@/hooks/useBlogPosts";
|
||||||
import { Twitter, Linkedin, Github } from 'lucide-react';
|
import { Twitter, Linkedin, Github } from 'lucide-react';
|
||||||
|
|
||||||
@@ -47,7 +47,7 @@ export default function BlogPage() {
|
|||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div id="blog" data-section="blog">
|
<div id="blog" data-section="blog">
|
||||||
<BlogCardThree
|
<BlogCardTwo
|
||||||
blogs={posts}
|
blogs={posts}
|
||||||
title="From Our Blog"
|
title="From Our Blog"
|
||||||
description="Explore our latest articles, insights, and stories from the team."
|
description="Explore our latest articles, insights, and stories from the team."
|
||||||
@@ -66,10 +66,6 @@ export default function BlogPage() {
|
|||||||
copyrightText="© 2024 | CRM AI. All rights reserved."
|
copyrightText="© 2024 | CRM AI. All rights reserved."
|
||||||
socialLinks={footerSocialLinks}
|
socialLinks={footerSocialLinks}
|
||||||
className="py-16 md:py-20"
|
className="py-16 md:py-20"
|
||||||
cardClassName="py-10 px-6 sm:px-10 md:px-12"
|
|
||||||
logoClassName="text-lg font-bold"
|
|
||||||
copyrightTextClassName="text-sm text-foreground/70"
|
|
||||||
socialContainerClassName="gap-x-4"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -3,16 +3,11 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||||
import {
|
import {
|
||||||
BarChart2,
|
|
||||||
ClipboardCheck,
|
|
||||||
Github,
|
Github,
|
||||||
Linkedin,
|
Linkedin,
|
||||||
Shield,
|
Twitter
|
||||||
Twitter,
|
|
||||||
Workflow,
|
|
||||||
Zap
|
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
|
|
||||||
const socialLinks = [
|
const socialLinks = [
|
||||||
@@ -21,6 +16,15 @@ const socialLinks = [
|
|||||||
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
|
{ 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"}
|
||||||
|
].map(feature => ({...feature, tags: ["Key Features"]}));
|
||||||
|
|
||||||
export default function FeaturesPage() {
|
export default function FeaturesPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -47,20 +51,13 @@ export default function FeaturesPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features-glow" data-section="features-glow">
|
<div id="features-glow" data-section="features-glow">
|
||||||
<FeatureBorderGlow
|
<FeatureCardTwentyThree
|
||||||
title="Discover Our Cutting-Edge AI Capabilities"
|
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."
|
description="Explore the powerful features that make our AI CRM platform an industry leader, designed to supercharge your business growth."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={featuresData}
|
||||||
{icon:Zap,title:"Intelligent Lead Scoring",description:"Automatically prioritize high-value leads with AI-driven scoring, focusing your sales efforts where they matter most."},
|
animationType="slide-up"
|
||||||
{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."}
|
|
||||||
]}
|
|
||||||
tag="Key Features"
|
tag="Key Features"
|
||||||
className="py-16 md:py-24"
|
className="py-16 md:py-24"
|
||||||
/>
|
/>
|
||||||
@@ -72,10 +69,6 @@ export default function FeaturesPage() {
|
|||||||
copyrightText="© 2024 | CRM AI. All rights reserved."
|
copyrightText="© 2024 | CRM AI. All rights reserved."
|
||||||
socialLinks={socialLinks}
|
socialLinks={socialLinks}
|
||||||
className="py-16 md:py-20"
|
className="py-16 md:py-20"
|
||||||
cardClassName="py-10 px-6 sm:px-10 md:px-12"
|
|
||||||
logoClassName="text-lg font-bold"
|
|
||||||
copyrightTextClassName="text-sm text-foreground/70"
|
|
||||||
socialContainerClassName="gap-x-4"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { DM_Sans } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const manrope = Manrope({
|
const inter = Inter({
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const dmSans = DM_Sans({
|
||||||
@@ -18,11 +18,11 @@ export const metadata: Metadata = {
|
|||||||
openGraph: {
|
openGraph: {
|
||||||
title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", url: "https://crm-ai.com", siteName: "CRM AI", images: [
|
title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", url: "https://crm-ai.com", siteName: "CRM AI", images: [
|
||||||
{
|
{
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-abstract-futuristic-background-for-an-1771626573815-22f21f54.png", alt: "AI CRM Platform Dashboard"}
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771630687370-xxt7k3kx.png", alt: "AI CRM Platform Dashboard"}
|
||||||
],
|
],
|
||||||
type: "website"},
|
type: "website"},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image", title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-abstract-futuristic-background-for-an-1771626573815-22f21f54.png"],
|
card: "summary_large_image", title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771630687370-xxt7k3kx.png"],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -35,7 +35,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
className={`${inter.variable} ${dmSans.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
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 ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import {
|
import {
|
||||||
BarChart2,
|
|
||||||
ClipboardCheck,
|
|
||||||
Github,
|
Github,
|
||||||
Globe,
|
Globe,
|
||||||
Heart,
|
|
||||||
Linkedin,
|
Linkedin,
|
||||||
Mail,
|
|
||||||
MessageSquare,
|
|
||||||
Smile,
|
|
||||||
Target,
|
|
||||||
TrendingUp,
|
TrendingUp,
|
||||||
Twitter,
|
Twitter,
|
||||||
User,
|
|
||||||
Users,
|
Users,
|
||||||
Workflow,
|
|
||||||
Zap
|
Zap
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
|
|
||||||
@@ -46,9 +37,9 @@ export default function LandingPage() {
|
|||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
|
navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"/#products"},{name:"Reviews",id:"/#testimonials"},{name:"Contact",id:"/#contact"}]}
|
||||||
brandName="CRM AI"
|
brandName="CRM AI"
|
||||||
button={{text:"Get Started",href:"#contact"}}
|
button={{text:"Get Started",href:"/#contact"}}
|
||||||
buttonClassName="min-w-[120px] justify-center"
|
buttonClassName="min-w-[120px] justify-center"
|
||||||
buttonTextClassName="relative top-[0.5px]"
|
buttonTextClassName="relative top-[0.5px]"
|
||||||
className="z-50 backdrop-blur-md"
|
className="z-50 backdrop-blur-md"
|
||||||
@@ -56,19 +47,17 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroLogoBillboardSplit
|
||||||
title="CRM AI"
|
logoText="CRM AI"
|
||||||
description="Unleash the power of artificial intelligence to automate tasks, gain deeper customer insights, and drive unparalleled growth for your business."
|
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"}}
|
background={{variant:"sparkles-gradient"}}
|
||||||
avatars={[
|
|
||||||
{ src: "https://via.placeholder.com/40", alt: "User Avatar 1" },
|
|
||||||
{ src: "https://via.placeholder.com/40", alt: "User Avatar 2" },
|
|
||||||
{ src: "https://via.placeholder.com/40", alt: "User Avatar 3" }
|
|
||||||
]}
|
|
||||||
avatarText="Trusted by AI innovators"
|
|
||||||
buttons={[{text:"Get Started Free",href:"#contact"},{text:"Watch Demo",href:"#features"}]}
|
buttons={[{text:"Get Started Free",href:"#contact"},{text:"Watch Demo",href:"#features"}]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
className="min-h-[calc(100svh-var(--navbar-height))] md:min-h-[calc(100vh-var(--navbar-height))] pt-[var(--navbar-height)]"
|
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"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -110,10 +99,6 @@ export default function LandingPage() {
|
|||||||
products={[{id:"1",name:"AI Sales Optimizer",price:"Starting at $49/mo",imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-vibrant-modern-icon-or-illustration-re-1771626573834-d77afcef.png",imageAlt:"AI Sales Optimizer Icon"},{id:"2",name:"AI Marketing Pro",price:"Starting at $59/mo",imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-modern-icon-or-illustration-for-ai-dri-1771626572901-3adfb3ff.png",imageAlt:"AI Marketing Pro Icon"},{id:"3",name:"AI Support Assistant",price:"Starting at $39/mo",imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-illustration-for-ai-customer-support--1771626573048-9700743d.png",imageAlt:"AI Support Assistant Icon"},{id:"4",name:"AI Analytics Hub",price:"Starting at $69/mo",imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-illustration-for-advanced-ai-analytic-1771626574005-002b152d.png",imageAlt:"AI Analytics Hub Icon"}]}
|
products={[{id:"1",name:"AI Sales Optimizer",price:"Starting at $49/mo",imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-vibrant-modern-icon-or-illustration-re-1771626573834-d77afcef.png",imageAlt:"AI Sales Optimizer Icon"},{id:"2",name:"AI Marketing Pro",price:"Starting at $59/mo",imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-modern-icon-or-illustration-for-ai-dri-1771626572901-3adfb3ff.png",imageAlt:"AI Marketing Pro Icon"},{id:"3",name:"AI Support Assistant",price:"Starting at $39/mo",imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-illustration-for-ai-customer-support--1771626573048-9700743d.png",imageAlt:"AI Support Assistant Icon"},{id:"4",name:"AI Analytics Hub",price:"Starting at $69/mo",imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-illustration-for-advanced-ai-analytic-1771626574005-002b152d.png",imageAlt:"AI Analytics Hub Icon"}]}
|
||||||
tag="Solutions"
|
tag="Solutions"
|
||||||
className="py-16 md:py-24"
|
className="py-16 md:py-24"
|
||||||
cardClassName="aspect-square flex flex-col justify-center items-center text-center p-6"
|
|
||||||
imageClassName="h-24 w-24 object-contain mb-4"
|
|
||||||
cardNameClassName="text-lg font-semibold mb-1"
|
|
||||||
cardPriceClassName="text-foreground/70"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -124,7 +109,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
logos={["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572220-dfa321d5.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626573321-61cbafdb.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572947-a15277fd.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572938-88bc6de9.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626573368-a0ef15c0.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572744-1bc62af8.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572459-2e1fd664.png"]}
|
logos={["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572220-dfa321d5.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626573321-61cbafdb.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572947-a15277fd.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572938-88bc6de9.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626573368-a0ef15c0.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572744-1bc62af8.png","https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-minimalist-modern-logo-for-a-generic-t-1771626572459-2e1fd664.png"]}
|
||||||
names={[]}
|
names={["TechCorp", "Innovate Inc.", "Quantum Solutions", "Stellar AI", "Nexus Dynamics", "Future Systems", "Apex Innovations"]}
|
||||||
tag="Partnerships"
|
tag="Partnerships"
|
||||||
speed={30}
|
speed={30}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
@@ -188,10 +173,6 @@ export default function LandingPage() {
|
|||||||
copyrightText="© 2024 | CRM AI. All rights reserved."
|
copyrightText="© 2024 | CRM AI. All rights reserved."
|
||||||
socialLinks={[{icon:Twitter,href:"https://twitter.com",ariaLabel:"Twitter"},{icon:Linkedin,href:"https://linkedin.com",ariaLabel:"LinkedIn"},{icon:Github,href:"https://github.com",ariaLabel:"GitHub"}]}
|
socialLinks={[{icon:Twitter,href:"https://twitter.com",ariaLabel:"Twitter"},{icon:Linkedin,href:"https://linkedin.com",ariaLabel:"LinkedIn"},{icon:Github,href:"https://github.com",ariaLabel:"GitHub"}]}
|
||||||
className="py-16 md:py-20"
|
className="py-16 md:py-20"
|
||||||
cardClassName="py-10 px-6 sm:px-10 md:px-12"
|
|
||||||
logoClassName="text-lg font-bold"
|
|
||||||
copyrightTextClassName="text-sm text-foreground/70"
|
|
||||||
socialContainerClassName="gap-x-4"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -51,7 +51,9 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
getCheckoutItems,
|
getCheckoutItems,
|
||||||
} = useCart();
|
} = useCart();
|
||||||
|
|
||||||
const { buyNow, checkout, isLoading: isCheckoutLoading } = useCheckout();
|
const {
|
||||||
|
buyNow, checkout, isLoading: isCheckoutLoading
|
||||||
|
} = useCheckout();
|
||||||
|
|
||||||
const handleAddToCart = useCallback(() => {
|
const handleAddToCart = useCallback(() => {
|
||||||
const item = createCartItem();
|
const item = createCartItem();
|
||||||
@@ -113,10 +115,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
||||||
]}
|
]}
|
||||||
className="py-16 md:py-20"
|
className="py-16 md:py-20"
|
||||||
cardClassName="py-10 px-6 sm:px-10 md:px-12"
|
|
||||||
logoClassName="text-lg font-bold"
|
|
||||||
copyrightTextClassName="text-sm text-foreground/70"
|
|
||||||
socialContainerClassName="gap-x-4"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
@@ -170,10 +168,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
||||||
]}
|
]}
|
||||||
className="py-16 md:py-20"
|
className="py-16 md:py-20"
|
||||||
cardClassName="py-10 px-6 sm:px-10 md:px-12"
|
|
||||||
logoClassName="text-lg font-bold"
|
|
||||||
copyrightTextClassName="text-sm text-foreground/70"
|
|
||||||
socialContainerClassName="gap-x-4"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
@@ -251,10 +245,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
||||||
]}
|
]}
|
||||||
className="py-16 md:py-20"
|
className="py-16 md:py-20"
|
||||||
cardClassName="py-10 px-6 sm:px-10 md:px-12"
|
|
||||||
logoClassName="text-lg font-bold"
|
|
||||||
copyrightTextClassName="text-sm text-foreground/70"
|
|
||||||
socialContainerClassName="gap-x-4"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -82,10 +82,6 @@ export default function ShopPage() {
|
|||||||
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
||||||
]}
|
]}
|
||||||
className="py-16 md:py-20"
|
className="py-16 md:py-20"
|
||||||
cardClassName="py-10 px-6 sm:px-10 md:px-12"
|
|
||||||
logoClassName="text-lg font-bold"
|
|
||||||
copyrightTextClassName="text-sm text-foreground/70"
|
|
||||||
socialContainerClassName="gap-x-4"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
@@ -153,10 +149,6 @@ export default function ShopPage() {
|
|||||||
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" }
|
||||||
]}
|
]}
|
||||||
className="py-16 md:py-20"
|
className="py-16 md:py-20"
|
||||||
cardClassName="py-10 px-6 sm:px-10 md:px-12"
|
|
||||||
logoClassName="text-lg font-bold"
|
|
||||||
copyrightTextClassName="text-sm text-foreground/70"
|
|
||||||
socialContainerClassName="gap-x-4"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-manrope), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,21 +2,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #080200;;;
|
/* --background: #080200;;;;;;;;
|
||||||
--card: #1a0d0b;;;
|
--card: #151515;;;;;;;;
|
||||||
--foreground: #ffe6d5;;;
|
--foreground: #CEE7Ff;;;;;;;;
|
||||||
--primary-cta: #FF7B05;;;
|
--primary-cta: #106EFB;;;;;;;;
|
||||||
--secondary-cta: #170b07;;;
|
--secondary-cta: #170b07;;;;;;;;
|
||||||
--accent: #7b5e4a;;;
|
--accent: #E6F0Ff;;;;;;;;
|
||||||
--background-accent: #b8541e;;; */
|
--background-accent: #106EFB;;;;;;;; */
|
||||||
|
|
||||||
--background: #080200;;;
|
--background: #080200;;;;;;;;
|
||||||
--card: #1a0d0b;;;
|
--card: #151515;;;;;;;;
|
||||||
--foreground: #ffe6d5;;;
|
--foreground: #CEE7Ff;;;;;;;;
|
||||||
--primary-cta: #FF7B05;;;
|
--primary-cta: #106EFB;;;;;;;;
|
||||||
--secondary-cta: #170b07;;;
|
--secondary-cta: #170b07;;;;;;;;
|
||||||
--accent: #7b5e4a;;;
|
--accent: #E6F0Ff;;;;;;;;
|
||||||
--background-accent: #b8541e;;;
|
--background-accent: #106EFB;;;;;;;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user