Update src/app/layout.tsx

This commit is contained in:
2026-03-04 19:14:42 +00:00
parent 2fb0557f39
commit e267474830

View File

@@ -1,76 +1,19 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "AceMedia - Web Design Services for SMB Growth",
description: "Custom web design services for small-to-midsize businesses. High-converting websites, transparent pricing, proven results. Transform your online presence today.",
keywords: "web design, website design services, custom web development, small business websites, web design agency",
metadataBase: new URL("https://acemedia.co"),
alternates: {
canonical: "https://acemedia.co",
},
openGraph: {
title: "AceMedia - Web Design Services",
description: "Build sleek, high-performing websites tailored to your business. From concept to launch, we handle the complexity.",
url: "https://acemedia.co",
siteName: "AceMedia",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/a-sleek-modern-website-interface-display-1772640593669-88f1fd10.png",
alt: "AceMedia web design showcase",
},
],
},
twitter: {
card: "summary_large_image",
title: "AceMedia - Web Design Services",
description: "Websites that convert visitors into customers",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUGx3nyr3Ulfuu49Sf7JGcziQq/a-sleek-modern-website-interface-display-1772640593669-88f1fd10.png",
],
},
robots: {
index: true,
follow: true,
},
};
title: "AceMedia - Web Design Studio", description: "Websites That Convert Visitors Into Customers"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1438,7 +1381,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}