Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 48836b9da2 | |||
| a070e82b3f | |||
| 6c28075d56 | |||
| 322314d02d | |||
| 9d02919d45 | |||
| 5ef751a6bf | |||
| d02af4ac0b | |||
| 51e7392a53 | |||
| 2b948fe25d | |||
| e5bbaac00a | |||
| c4c3e8d4ed | |||
| d207abb9e2 | |||
| 5c6797d153 | |||
| 1736d57bd3 |
@@ -100,4 +100,4 @@ export default function AboutPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,10 +29,9 @@ export default function BlogPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "Customers", id: "testimonials" },
|
{ name: "Contact", id: "/contact" }
|
||||||
{ name: "Contact", id: "contact" }
|
|
||||||
]}
|
]}
|
||||||
brandName="AIFlow"
|
brandName="AIFlow"
|
||||||
bottomLeftText="Enterprise AI Solutions"
|
bottomLeftText="Enterprise AI Solutions"
|
||||||
@@ -85,4 +84,4 @@ export default function BlogPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -109,4 +109,4 @@ export default function ContactPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1412,4 +1412,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
@@ -40,27 +40,18 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitDualMedia
|
<HeroBillboard
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
tag="Enterprise AI Platform"
|
tag="Enterprise AI Platform"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
title="Transform Your Enterprise with Enterprise-Grade AI"
|
title="Transform Your Enterprise with Enterprise-Grade AI"
|
||||||
description="Unlock unprecedented efficiency and insights with our advanced AI platform designed specifically for enterprise workflows. Automate complex processes, predict market trends, and make smarter decisions faster."
|
description="Unlock unprecedented efficiency and insights with our advanced AI platform designed specifically for enterprise workflows. Automate complex processes, predict market trends, and make smarter decisions faster."
|
||||||
mediaItems={[
|
|
||||||
{
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-modern-sleek-ai-software-dashboard-int-1772134342996-3a041ecf.png", imageAlt: "AI Dashboard Interface"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-abstract-visualization-of-artificial--1772134341881-8409f734.png", imageAlt: "AI Neural Network Visualization"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
rating={5}
|
|
||||||
ratingText="Trusted by 500+ Enterprise Clients"
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Free Trial", href: "/contact" },
|
{ text: "Start Free Trial", href: "/contact" },
|
||||||
{ text: "Watch Demo", href: "#" }
|
{ text: "Watch Demo", href: "#" }
|
||||||
]}
|
]}
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-modern-sleek-ai-software-dashboard-int-1772134342996-3a041ecf.png"
|
||||||
|
imageAlt="AI Dashboard Interface"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -171,4 +162,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -113,4 +113,4 @@ export default function PricingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -251,4 +251,4 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -123,4 +123,4 @@ export default function ShopPage() {
|
|||||||
<ShopPageContent />
|
<ShopPageContent />
|
||||||
</Suspense>
|
</Suspense>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user