3 Commits

Author SHA1 Message Date
92ddfa7b25 Update src/app/page.tsx 2026-03-06 11:52:14 +00:00
00e3524141 Update src/app/layout.tsx 2026-03-06 11:52:13 +00:00
c372327433 Merge version_1 into main
Merge version_1 into main
2026-03-06 11:49:04 +00:00
2 changed files with 7 additions and 42 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "MECOGROW | AI Automation Solutions for Enterprise", description: "Transform your business with intelligent AI automation systems. From chatbots to workflow optimization, MECOGROW delivers measurable results.", keywords: "AI automation, workflow automation, AI chatbots, CRM automation, business automation, intelligent systems", openGraph: { title: "MECOGROW - AI Automation Solutions", description: "Transform your business with intelligent AI automation systems"};
title: "MECOGROW - Premium AI Automation Services", description: "Intelligent automation solutions engineered for scale and growth", url: "https://mecogrow.com", siteName: "MECOGROW", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPqQCfpmvOc5udQPPnBKo97Uz/abstract-cinematic-background-with-flowi-1772797625218-2418f3e3.png", alt: "MECOGROW AI Automation Agency"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "MECOGROW | AI Automation Solutions", description: "Transform your business with intelligent automation", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPqQCfpmvOc5udQPPnBKo97Uz/abstract-cinematic-background-with-flowi-1772797625218-2418f3e3.png"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCarouselLogo <HeroCarouselLogo
logoText="MECOGROW" logoText="MECOGROW"
description="Transform your business with intelligent AI automation systems engineered for scale" description="Automate 80% of manual work, cut costs by half, and scale operations without hiring"
buttons={[ buttons={[
{ text: "Explore Solutions", href: "services" }, { text: "Explore Solutions", href: "services" },
{ text: "View Our Work", href: "work" }, { text: "View Our Work", href: "work" },