17 Commits

Author SHA1 Message Date
ad96f500f7 Switch to version 3: modified src/app/page.tsx 2026-05-25 00:12:10 +00:00
8d8dcd1d96 Switch to version 4: modified src/app/page.tsx 2026-05-25 00:11:55 +00:00
1296119b1f Merge version_3 into main
Merge version_3 into main
2026-05-22 23:01:08 +00:00
923e7a3927 Update src/app/page.tsx 2026-05-22 23:01:05 +00:00
ee7abd9af4 Switch to version 3: modified src/app/page.tsx 2026-05-22 22:41:21 +00:00
de8bada818 Switch to version 4: modified src/app/page.tsx 2026-05-22 22:40:59 +00:00
9fc476c82d Switch to version 3: modified src/app/page.tsx 2026-05-22 22:38:51 +00:00
aa8825eef9 Merge version_4 into main
Merge version_4 into main
2026-05-22 22:37:43 +00:00
f7dde6ff8e Update src/app/page.tsx 2026-05-22 22:37:40 +00:00
13bb8f354b Merge version_3 into main
Merge version_3 into main
2026-05-22 22:17:11 +00:00
aeda0f6aa0 Update src/app/blog/page.tsx 2026-05-22 22:17:08 +00:00
5ccb8b16f1 Merge version_3 into main
Merge version_3 into main
2026-05-22 22:16:47 +00:00
05227ca789 Update src/app/blog/page.tsx 2026-05-22 22:16:44 +00:00
8c93915bcd Merge version_3 into main
Merge version_3 into main
2026-05-22 22:16:22 +00:00
e38b3218be Update src/app/page.tsx 2026-05-22 22:16:19 +00:00
14004c1278 Add src/app/blog/page.tsx 2026-05-22 22:16:19 +00:00
322a4fcfca Merge version_2 into main
Merge version_2 into main
2026-05-22 22:10:58 +00:00
2 changed files with 95 additions and 10 deletions

81
src/app/blog/page.tsx Normal file
View 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>
);
}

View File

@@ -32,15 +32,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ {
name: "Mission", id: "#about"}, name: "Mission", id: "/#about"},
{ {
name: "Solutions", id: "#features"}, name: "Solutions", id: "/#features"},
{ {
name: "Contact", id: "#contact"}, name: "Blog", id: "/blog"},
{
name: "Contact", id: "/#contact"},
]} ]}
brandName="MontriWeb" brandName="MontriWeb"
button={{ button={{
text: "Get Started", href: "#contact"}} text: "Get Started", href: "/#contact"}}
/> />
</div> </div>
@@ -48,7 +50,7 @@ export default function LandingPage() {
<HeroSplitKpi <HeroSplitKpi
background={{ background={{
variant: "gradient-bars"}} variant: "gradient-bars"}}
title="Unlocking Scalable Growth for Small Businesses with AI" title="Scale Like a Tech Giant - Without Needing One"
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={[
{ {
@@ -61,7 +63,7 @@ export default function LandingPage() {
enableKpiAnimation={true} enableKpiAnimation={true}
buttons={[ buttons={[
{ {
text: "Explore Services", href: "#features"}, text: "Explore Services", 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"
@@ -207,17 +209,19 @@ export default function LandingPage() {
{ {
title: "Links", items: [ title: "Links", items: [
{ {
label: "Home", href: "#"}, label: "Home", href: "/"},
{ {
label: "Services", href: "#features"}, label: "Services", href: "/#features"},
{
label: "Blog", href: "/blog"},
], ],
}, },
{ {
title: "Legal", items: [ title: "Legal", items: [
{ {
label: "Privacy", href: "#"}, label: "Privacy", href: "/#"},
{ {
label: "Terms", href: "#"}, label: "Terms", href: "/#"},
], ],
}, },
]} ]}