5 Commits

Author SHA1 Message Date
0f279f4129 Update src/app/page.tsx 2026-03-05 15:05:05 +00:00
423fb75254 Update src/app/page.tsx 2026-03-05 15:03:33 +00:00
e49a0145f4 Update src/app/layout.tsx 2026-03-05 15:03:33 +00:00
86177f9f22 Merge version_2 into main
Merge version_2 into main
2026-03-05 14:58:53 +00:00
5c08968a14 Merge version_2 into main
Merge version_2 into main
2026-03-05 14:57:44 +00:00
2 changed files with 4 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,7 @@ 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"
useInvertedBackground={true}
buttons={[
{ text: "Learn How We Solve This", href: "#solution" },
@@ -340,12 +334,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>
);
}