diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 351acb6..eefd8ee 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "WebStudio | Web Design & Development Agency", description: "Professional web design and development services. We create beautiful, high-converting websites that drive business results. 500+ projects delivered.", keywords: "web design, web development, digital agency, website design, e-commerce, SaaS development", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "WebStudio | Web Design & Development Agency", description: "Professional web design and development services. We create beautiful, high-converting websites that drive business results.", type: "website", siteName: "WebStudio", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYHPbE4TSqSbVsn4YVBcRdJzpQ/a-modern-web-design-agency-workspace-sho-1772762624353-7b47565e.png", alt: "WebStudio - Web Design Agency"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "WebStudio | Web Design & Development Agency", description: "Professional web design and development services for your business.", images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYHPbE4TSqSbVsn4YVBcRdJzpQ/a-showcase-of-multiple-beautiful-website-1772762622248-fad76374.png"],
- },
-};
+ title: "WebStudio - Web Design Agency", description: "Stunning websites that drive results"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-