Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 923e7a3927 | |||
| aeda0f6aa0 | |||
| 05227ca789 | |||
| e38b3218be | |||
| 14004c1278 | |||
| 322a4fcfca | |||
| d36f24a1ef |
81
src/app/blog/page.tsx
Normal file
81
src/app/blog/page.tsx
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||||
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
|
||||||
|
export default function BlogPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="icon-arrow"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="smallMedium"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="gradient-radial"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="semibold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Mission", id: "/#about" },
|
||||||
|
{ name: "Solutions", id: "/#features" },
|
||||||
|
{ name: "Blog", id: "/blog" },
|
||||||
|
{ name: "Contact", id: "/#contact" },
|
||||||
|
]}
|
||||||
|
brandName="MontriWeb"
|
||||||
|
button={{ text: "Get Started", href: "/#contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="blog" data-section="blog" className="pt-32 pb-20">
|
||||||
|
<BlogCardThree
|
||||||
|
title="Latest Insights"
|
||||||
|
description="Explore the latest trends, guides, and updates from the world of AI-driven business growth."
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
blogs={[
|
||||||
|
{ id: "1", category: "Growth", title: "Scaling Small Businesses", excerpt: "How to leverage AI to unlock enterprise-level efficiency.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E665B6wm8CMNvYChmBhM1LZz9e/uploaded-1779487640172-yftlqhzn.jpg?_wi=1", authorName: "Admin", authorAvatar: "", date: "Jan 12, 2025" },
|
||||||
|
{ id: "2", category: "Automation", title: "The Future of PLR", excerpt: "Why AI-enhanced private label rights are changing the game.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E665B6wm8CMNvYChmBhM1LZz9e/uploaded-1779487640172-yftlqhzn.jpg?_wi=2", authorName: "Admin", authorAvatar: "", date: "Jan 10, 2025" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterSimple
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Links", items: [
|
||||||
|
{
|
||||||
|
label: "Home", href: "/"},
|
||||||
|
{
|
||||||
|
label: "Services", href: "/#features"},
|
||||||
|
{
|
||||||
|
label: "Blog", href: "/blog"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{
|
||||||
|
label: "Privacy", href: "/#"},
|
||||||
|
{
|
||||||
|
label: "Terms", href: "/#"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
bottomLeftText="© 2025 MontriWeb. All rights reserved."
|
||||||
|
bottomRightText="AI Solutions for Founders."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
219
src/app/page.tsx
219
src/app/page.tsx
@@ -32,105 +32,70 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Mission",
|
name: "Mission", id: "/#about"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Solutions",
|
name: "Solutions", id: "/#features"},
|
||||||
id: "#features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Blog", id: "/blog"},
|
||||||
id: "#contact",
|
{
|
||||||
},
|
name: "Contact", id: "/#contact"},
|
||||||
]}
|
]}
|
||||||
brandName="MontriWeb"
|
brandName="MontriWeb"
|
||||||
button={{
|
button={{
|
||||||
text: "Get Started",
|
text: "Get Started", href: "/#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
title="Scale Like a Tech Giant - Without Needing One"
|
||||||
title="Unlocking Scalable Growth for Small Businesses with AI"
|
|
||||||
description="At MontriWeb, we revolutionize growth by delivering access to advanced, AI-driven digital tools that turn intelligent systems into your business's core engine."
|
description="At MontriWeb, we revolutionize growth by delivering access to advanced, AI-driven digital tools that turn intelligent systems into your business's core engine."
|
||||||
kpis={[
|
kpis={[
|
||||||
{
|
{
|
||||||
value: "100%",
|
value: "100%", label: "Growth Focused"},
|
||||||
label: "Growth Focused",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "24/7",
|
value: "24/7", label: "Automation"},
|
||||||
label: "Automation",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "Smart",
|
value: "Smart", label: "Scaling"},
|
||||||
label: "Scaling",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Explore Services",
|
text: "Explore Services", href: "/#features"},
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E665B6wm8CMNvYChmBhM1LZz9e/uploaded-1779487640172-yftlqhzn.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E665B6wm8CMNvYChmBhM1LZz9e/uploaded-1779487640172-yftlqhzn.jpg"
|
||||||
imageAlt="AI Business Solutions"
|
imageAlt="AI Business Solutions"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/confident-handsome-man_1163-5476.jpg",
|
src: "http://img.b2bpic.net/free-photo/confident-handsome-man_1163-5476.jpg", alt: "Confident handsome man"},
|
||||||
alt: "Confident handsome man",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/front-view-lawyer-portrait_23-2151202434.jpg",
|
src: "http://img.b2bpic.net/free-photo/front-view-lawyer-portrait_23-2151202434.jpg", alt: "Front view lawyer portrait"},
|
||||||
alt: "Front view lawyer portrait",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg",
|
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg", alt: "Medium shot smiley woman at work"},
|
||||||
alt: "Medium shot smiley woman at work",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-latin-businesswoman-standing-with-arms-crossed-against-isolated-background_662251-639.jpg",
|
src: "http://img.b2bpic.net/free-photo/happy-latin-businesswoman-standing-with-arms-crossed-against-isolated-background_662251-639.jpg", alt: "Happy Latin businesswoman"},
|
||||||
alt: "Happy Latin businesswoman",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/closeup-young-female-professional-making-eye-contact-against-colored-background_662251-651.jpg",
|
src: "http://img.b2bpic.net/free-photo/closeup-young-female-professional-making-eye-contact-against-colored-background_662251-651.jpg", alt: "Closeup of young female professional"},
|
||||||
alt: "Closeup of young female professional",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ growth-focused founders"
|
avatarText="Trusted by 500+ growth-focused founders"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Predictive Analytics", icon: LineChart,
|
||||||
text: "Predictive Analytics",
|
|
||||||
icon: LineChart,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "AI Automation", icon: Star,
|
||||||
text: "AI Automation",
|
|
||||||
icon: Star,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Workflow Optimization", icon: Zap,
|
||||||
text: "Workflow Optimization",
|
|
||||||
icon: Zap,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Real-time Insights", icon: Radio,
|
||||||
text: "Real-time Insights",
|
|
||||||
icon: Radio,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Scalable Infrastructure", icon: Shield,
|
||||||
text: "Scalable Infrastructure",
|
|
||||||
icon: Shield,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -150,38 +115,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "AI-powered SaaS", author: "MontriWeb", description: "Automate marketing, sales, and interactions.", tags: [
|
||||||
title: "AI-powered SaaS",
|
"Growth", "Efficiency"],
|
||||||
author: "MontriWeb",
|
imageSrc: "http://img.b2bpic.net/free-photo/call-center-worker-using-ai-tech-laptop-reply-customers-closeup_482257-125822.jpg"},
|
||||||
description: "Automate marketing, sales, and interactions.",
|
|
||||||
tags: [
|
|
||||||
"Growth",
|
|
||||||
"Efficiency",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/call-center-worker-using-ai-tech-laptop-reply-customers-closeup_482257-125822.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "AI-enhanced PLR", author: "MontriWeb", description: "Tailor yourself to niche markets with speed.", tags: [
|
||||||
title: "AI-enhanced PLR",
|
"PLR", "Customization"],
|
||||||
author: "MontriWeb",
|
imageSrc: "http://img.b2bpic.net/free-photo/man-wearing-virtual-reality-goggles-with-special-effects-around-him_23-2148815725.jpg"},
|
||||||
description: "Tailor yourself to niche markets with speed.",
|
|
||||||
tags: [
|
|
||||||
"PLR",
|
|
||||||
"Customization",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-wearing-virtual-reality-goggles-with-special-effects-around-him_23-2148815725.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Predictive Tools", author: "MontriWeb", description: "Identify opportunities before competition hits.", tags: [
|
||||||
title: "Predictive Tools",
|
"Data", "Strategy"],
|
||||||
author: "MontriWeb",
|
imageSrc: "http://img.b2bpic.net/free-photo/desk-from-top-view_23-2147626522.jpg"},
|
||||||
description: "Identify opportunities before competition hits.",
|
|
||||||
tags: [
|
|
||||||
"Data",
|
|
||||||
"Strategy",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/desk-from-top-view_23-2147626522.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="AI Solutions for Modern Founders"
|
title="AI Solutions for Modern Founders"
|
||||||
description="We specialize in transforming operations by offering intelligent systems powered by Artificial Intelligence."
|
description="We specialize in transforming operations by offering intelligent systems powered by Artificial Intelligence."
|
||||||
@@ -196,25 +140,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "10x", title: "Efficiency", description: "Boosted productivity", icon: Zap,
|
||||||
value: "10x",
|
|
||||||
title: "Efficiency",
|
|
||||||
description: "Boosted productivity",
|
|
||||||
icon: Zap,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "24/7", title: "Operations", description: "Always online", icon: Clock,
|
||||||
value: "24/7",
|
|
||||||
title: "Operations",
|
|
||||||
description: "Always online",
|
|
||||||
icon: Clock,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "100%", title: "Scalability", description: "Growth potential", icon: TrendingUp,
|
||||||
value: "100%",
|
|
||||||
title: "Scalability",
|
|
||||||
description: "Growth potential",
|
|
||||||
icon: TrendingUp,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Why Choose MontriWeb?"
|
title="Why Choose MontriWeb?"
|
||||||
@@ -228,45 +160,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Game Changer", quote: "MontriWeb saved me hours every day.", name: "Jane Doe", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-male-professional-standing-with-arms-crossed-while-making-eye-contact-against-isolated-background_662251-838.jpg"},
|
||||||
title: "Game Changer",
|
|
||||||
quote: "MontriWeb saved me hours every day.",
|
|
||||||
name: "Jane Doe",
|
|
||||||
role: "CEO",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-male-professional-standing-with-arms-crossed-while-making-eye-contact-against-isolated-background_662251-838.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Incredible Tech", quote: "The PLR kits are simply outstanding.", name: "John Smith", role: "Owner", imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg"},
|
||||||
title: "Incredible Tech",
|
|
||||||
quote: "The PLR kits are simply outstanding.",
|
|
||||||
name: "John Smith",
|
|
||||||
role: "Owner",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "High ROI", quote: "Best investment for my small startup.", name: "Alex King", role: "Founder", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-black-blazer-portrait_23-2152009548.jpg"},
|
||||||
title: "High ROI",
|
|
||||||
quote: "Best investment for my small startup.",
|
|
||||||
name: "Alex King",
|
|
||||||
role: "Founder",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-black-blazer-portrait_23-2152009548.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Efficiency Mastered", quote: "My marketing is finally on autopilot.", name: "Sam Lee", role: "Marketing Dir", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businessman-works-laptop_1163-5473.jpg"},
|
||||||
title: "Efficiency Mastered",
|
|
||||||
quote: "My marketing is finally on autopilot.",
|
|
||||||
name: "Sam Lee",
|
|
||||||
role: "Marketing Dir",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businessman-works-laptop_1163-5473.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Total Growth", quote: "Scaling like a tech giant today.", name: "Pat Ross", role: "Founder", imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg"},
|
||||||
title: "Total Growth",
|
|
||||||
quote: "Scaling like a tech giant today.",
|
|
||||||
name: "Pat Ross",
|
|
||||||
role: "Founder",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Founder Stories"
|
title="Founder Stories"
|
||||||
description="What our partners say about scaling with AI."
|
description="What our partners say about scaling with AI."
|
||||||
@@ -278,22 +180,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "How does MontriWeb ensure data security?", content: "Security is our top priority. We implement enterprise-grade encryption and strict access controls, ensuring your business data remains private, compliant, and protected against unauthorized access at all times."},
|
||||||
title: "How do I start?",
|
|
||||||
content: "Book a discovery call today.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "Can I scale my services as my business grows?", content: "Absolutely. Our infrastructure is specifically designed for scalability. Whether you are handling a hundred customers or a hundred thousand, our AI systems adapt seamlessly to support your growing workload without compromising performance."},
|
||||||
title: "Is it secure?",
|
|
||||||
content: "Our AI systems are enterprise grade.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "What kind of support is provided after setup?", content: "We offer dedicated ongoing support and comprehensive documentation. Our team is committed to your success, providing regular updates, performance optimization insights, and direct troubleshooting assistance to ensure you get maximum value."},
|
||||||
title: "Can I scale?",
|
|
||||||
content: "Our systems are built for growth.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
sideTitle="Common Questions"
|
sideTitle="Common Questions"
|
||||||
|
sideDescription="We are here to answer your concerns and help you get started with confidence."
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -302,8 +196,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
tag="Get in touch"
|
tag="Get in touch"
|
||||||
title="Ready to Scale Your Business?"
|
title="Ready to Scale Your Business?"
|
||||||
description="Connect with MontriWeb to start your AI transformation journey."
|
description="Connect with MontriWeb to start your AI transformation journey."
|
||||||
@@ -314,29 +207,21 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Links",
|
title: "Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Home",
|
label: "Home", href: "/"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/#features"},
|
||||||
href: "#features",
|
{
|
||||||
},
|
label: "Blog", href: "/blog"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy",
|
label: "Privacy", href: "/#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms",
|
label: "Terms", href: "/#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user