Add src/app/products/page.tsx

This commit is contained in:
2026-06-02 13:44:50 +00:00
parent e7b69079c4
commit 25d971e0ce

151
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,151 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="mediumSizeLargeTitles"
background="fluid"
cardStyle="soft-shadow"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Solutions", id: "/#services" },
{ name: "Showcase", id: "/#showcase" },
{ name: "Process", id: "/#process" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" }
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EaCBg8IqA1RI2gpSxEL5UWFu1V/uploaded-1780407185220-1zawktjz.png"
logoAlt="LEVIAZ Logo"
brandName="LEVIAZ"
bottomLeftText="Innovation Driven"
bottomRightText="info@leviaz.ai"
button={{ text: "Get Started", href: "/#contact" }}
/>
</div>
<div id="products-section" data-section="products-section">
<ProductCardThree
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
animationType="slide-up"
title="Our AI-Powered Product Ecosystem"
description="Explore our suite of innovative SaaS products designed to streamline your operations, enhance decision-making, and drive sustainable growth. Each product is engineered with cutting-edge AI to deliver unparalleled efficiency and intelligence."
products={[
{
id: "ai-suite", name: "LEVIAZ AI Suite: Intelligent Automation", price: "Starting at $99/month", imageSrc: "http://img.b2bpic.net/free-photo/technology-circuit-processor-innovation-network-concept_53876-124253.jpg", imageAlt: "AI Automation Suite", priceButtonProps: [
{ text: "View Demo", href: "#" },
{ text: "Get Started", href: "/#contact" }
]
},
{
id: "data-insights", name: "LEVIAZ Data Insights: Predictive Analytics", price: "Starting at $149/month", imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913296.jpg", imageAlt: "Data Insights Platform", priceButtonProps: [
{ text: "View Demo", href: "#" },
{ text: "Get Started", href: "/#contact" }
]
},
{
id: "workflow-optimizer", name: "LEVIAZ Workflow Optimizer: Smart Process AI", price: "Starting at $79/month", imageSrc: "http://img.b2bpic.net/free-photo/businessman-using-smartwatch-hologram-presentation-wearable-gadget_53876-97061.jpg", imageAlt: "Workflow Optimizer Interface", priceButtonProps: [
{ text: "View Demo", href: "#" },
{ text: "Get Started", href: "/#contact" }
]
},
{
id: "customer-ai", name: "LEVIAZ Customer AI: Personalized Engagement", price: "Starting at $129/month", imageSrc: "http://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169845.jpg", imageAlt: "Customer AI Dashboard", priceButtonProps: [
{ text: "View Demo", href: "#" },
{ text: "Get Started", href: "/#contact" }
]
},
{
id: "security-copilot", name: "LEVIAZ Security Copilot: Proactive Threat Detection", price: "Starting at $199/month", imageSrc: "http://img.b2bpic.net/free-photo/data-center-engineers-uses-artificial-intelligence-identify-hardware-failures_482257-124129.jpg", imageAlt: "AI Security Dashboard", priceButtonProps: [
{ text: "View Demo", href: "#" },
{ text: "Get Started", href: "/#contact" }
]
},
{
id: "api-hub", name: "LEVIAZ API Hub: Seamless Integrations", price: "Custom Pricing", imageSrc: "http://img.b2bpic.net/free-photo/view-3d-gaming-device_23-2151005796.jpg", imageAlt: "API Integration Interface", priceButtonProps: [
{ text: "View Demo", href: "#" },
{ text: "Get Started", href: "/#contact" }
]
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Company", items: [
{
label: "Home", href: "/"},
{
label: "About Us", href: "/#about"},
{
label: "Our Vision", href: "/#vision"}
]
},
{
title: "Solutions", items: [
{
label: "AI Products", href: "/#services"},
{
label: "Automation", href: "/#services"},
{
label: "SaaS Development", href: "/#services"},
{
label: "Websites", href: "/#services"}
]
},
{
title: "Resources", items: [
{
label: "Products", href: "/products"
},
{
label: "Showcase", href: "/#showcase"},
{
label: "Process", href: "/#process"},
{
label: "Testimonials", href: "/#testimonials"}
]
},
{
title: "Connect", items: [
{
label: "Contact Us", href: "/#contact"},
{
label: "LinkedIn", href: "https://linkedin.com/leviaz"},
{
label: "Twitter", href: "https://twitter.com/leviaz"}
]
}
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EaCBg8IqA1RI2gpSxEL5UWFu1V/uploaded-1780407185220-1zawktjz.png"
logoAlt="LEVIAZ Logo"
logoText="LEVIAZ"
copyrightText="© 2024 LEVIAZ. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}