3 Commits

Author SHA1 Message Date
1da08052b1 Update src/app/page.tsx 2026-03-03 12:20:14 +00:00
10616de12f Update src/app/layout.tsx 2026-03-03 12:20:13 +00:00
a01535d2b0 Merge version_3 into main
Merge version_3 into main
2026-03-03 12:17:41 +00:00
2 changed files with 7 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Raleway } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const raleway = Raleway({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-raleway", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Elite Services - Trading, Cleaning & Moving Solutions", description: "Premium business services including professional trading, expert cleaning, and seamless moving solutions. Trust Elite Services for excellence.", keywords: "trading services, professional cleaning, moving company, business services, relocation", openGraph: { title: "Elite Services - Trading, Cleaning & Moving Solutions", description: "Premium business services with 10+ years of trusted expertise. Proven results for 500+ businesses. Trading solutions, professional cleaning, and seamless moving."};
title: "Elite Services - Business Excellence", description: "Comprehensive trading, cleaning, and moving services for businesses", type: "website", siteName: "Elite Services"},
twitter: {
card: "summary_large_image", title: "Elite Services - Business Solutions", description: "Trading, cleaning, and moving services"},
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={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -218,7 +218,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboardSplit <HeroLogoBillboardSplit
logoText="ELITE SERVICES" logoText="ELITE SERVICES"
description="Premium trading, professional cleaning, and seamless moving solutions designed for excellence. Your trusted partner for all business services." description="Increased efficiency, cost savings, and reliability across all operations. Trusted by 500+ businesses with 10+ years of proven expertise delivering premium trading, professional cleaning, and seamless moving solutions."
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
buttons={heroButtons} buttons={heroButtons}
buttonAnimation="slide-up" buttonAnimation="slide-up"