Merge version_3 into main #9

Merged
bender merged 2 commits from version_3 into main 2026-03-05 15:03:38 +00:00
2 changed files with 5 additions and 24 deletions

View File

@@ -1,14 +1,8 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
import "@/styles/globals.css";
export const metadata: Metadata = {
title: "Smart ERP | Enterprise Intelligence Platform", description: "Transform your business with unified operations, real-time intelligence, and connected workflows"};
title: "Smart ERP | Enterprise Intelligence Platform", description: "Transform fragmented business operations into a unified ecosystem with real-time intelligence. Smart ERP powers intelligent growth for enterprises."};
export default function RootLayout({
children,
@@ -17,9 +11,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.variable}>
{children}
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -13,12 +13,6 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { AlertCircle, Award, Building2, MessageCircle, Network, Package, Rocket, TrendingUp, Zap } from "lucide-react";
import dynamic from "next/dynamic";
const IDMSLogo3D = dynamic(() => import("@/components/3d/IDMSLogo3D"), {
ssr: false,
loading: () => <div className="w-24 h-24 bg-gradient-to-br from-purple-500 to-pink-500 rounded-lg animate-pulse" />,
});
export default function LandingPage() {
return (
@@ -78,7 +72,8 @@ export default function LandingPage() {
<TextAbout
tag="The Challenge"
tagIcon={AlertCircle}
title="Why Businesses Struggle to Scale: The Silo Problem. Most businesses don't struggle because of lack of effort—they struggle because their systems and departments operate in silos. Sales teams work hard with one set of data. Production monitors efficiency with isolated metrics. Stores manages inventory separately. Quality tracks compliance independently. Finance operates in its own world. Each department works diligently, but on disconnected data and workflows. The result? Fragmented visibility, delayed decisions, operational misalignment, and missed growth opportunities."
title="Most Businesses Operate in Silos"
description="Why Businesses Struggle to Scale: Most businesses don't struggle because of lack of effort—they struggle because their systems and departments operate in silos. Sales teams work hard with one set of data. Production monitors efficiency with isolated metrics. Stores manages inventory separately. Quality tracks compliance independently. Finance operates in its own world. Each department works diligently, but on disconnected data and workflows. The result? Fragmented visibility, delayed decisions, operational misalignment, and missed growth opportunities."
useInvertedBackground={true}
buttons={[
{ text: "Learn How We Solve This", href: "#solution" },
@@ -340,12 +335,6 @@ export default function LandingPage() {
bottomRightText="Driving Intelligent Growth"
/>
</div>
<div className="fixed bottom-8 right-8 z-50 pointer-events-none">
<div className="w-24 h-24 pointer-events-auto">
<IDMSLogo3D />
</div>
</div>
</ThemeProvider>
);
}