Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 07:26:48 +00:00
2 changed files with 12 additions and 64 deletions

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Premium Social Media Agency | Elevate Your Brand",
description: "Strategic social media services that drive engagement, build communities, and deliver measurable business results. Transform your brand with Elevate Media.",
keywords: "social media agency, social media marketing, content creation, digital marketing, social media strategy, brand growth, influencer marketing",
metadataBase: new URL("https://elevate-media.com"),
alternates: {
canonical: "https://elevate-media.com",
},
openGraph: {
title: "Premium Social Media Agency | Elevate Media",
description: "Strategic social media campaigns that deliver exceptional results. Trusted by leading brands.",
url: "https://elevate-media.com",
siteName: "Elevate Media",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/business-people-using-digital-devices-isolated-white-background_53876-20490.jpg",
alt: "Elevate Media - Social Media Agency",
},
],
},
twitter: {
card: "summary_large_image",
title: "Premium Social Media Agency | Elevate Media",
description: "Transform your brand's social presence with strategic campaigns and creative excellence.",
images: ["http://img.b2bpic.net/free-photo/business-people-using-digital-devices-isolated-white-background_53876-20490.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Elevate Media - Premium Social Media Agency", description: "Strategic social media campaigns that drive engagement, build communities, and deliver measurable results."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -132,7 +132,10 @@ export default function HomePage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
buttons={[{ text: "Explore All Services", href: "/services" }]}
buttons={[
{ text: "Explore All Services", href: "/services" },
{ text: "Ready to Elevate?", href: "/contact" },
]}
/>
</div>
@@ -267,4 +270,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}