diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 275462e..f8d2260 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-