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 type { Metadata } from "next";
import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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: { title: "Premium Business Solutions", description: "Elevate your business with our premium solutions and expert guidance."};
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"],
},
};
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={`${libreBaskerville.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

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