7 Commits

Author SHA1 Message Date
fc8227eab0 Update src/app/page.tsx 2026-03-04 14:44:42 +00:00
b9ab5db8f2 Update src/app/layout.tsx 2026-03-04 14:44:42 +00:00
dda91959c8 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:43:19 +00:00
fb7b35b172 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:41:48 +00:00
e7db2df898 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:39:13 +00:00
e7be8a4d1b Merge version_1 into main
Merge version_1 into main
2026-03-04 14:37:47 +00:00
d62bfc9c8e Merge version_1 into main
Merge version_1 into main
2026-03-04 14:36:10 +00:00
2 changed files with 10 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Premium Business Solutions | Professional Services", description: "Transform your business with our expert consulting and digital solutions. Trusted by industry leaders for strategic growth and innovation.", keywords: "business consulting, digital transformation, professional services, growth strategy, business solutions", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Premium Business Solutions", description: "Professional services designed to elevate your business and drive measurable results.", siteName: "Premium Business", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/financial-charts-kpi-metrics-displays-office_482257-126638.jpg", alt: "business professional office modern workspace"},
],
},
twitter: {
card: "summary_large_image", title: "Premium Business Solutions", description: "Transform your business with expert consulting and digital solutions.", images: ["http://img.b2bpic.net/free-photo/financial-charts-kpi-metrics-displays-office_482257-126638.jpg"],
},
};
title: "Premium Business Solutions", description: "Elevate your business with our premium solutions and expert guidance."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -133,7 +133,10 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Explore All Services", href: "#testimonials" }]}
buttons={[
{ text: "Contact Us", href: "#contact" },
{ text: "Explore All Services", href: "#testimonials" }
]}
buttonAnimation="slide-up"
/>
</div>