diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 8dcd9b6..d88da33 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,77 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Poppins } 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 poppins = Poppins({
- variable: "--font-poppins",
- subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "DevNest - Web Development Agency | Custom Websites for Business",
- description: "DevNest creates stunning, high-performance websites for businesses. Custom web development, UI/UX design, and digital transformation solutions.",
- keywords: "web development, web design agency, custom websites, UI/UX design, digital agency, web solutions",
- metadataBase: new URL("https://devnest.com"),
- alternates: {
- canonical: "https://devnest.com",
- },
- openGraph: {
- title: "DevNest - Web Development Agency",
- description: "Transform your business with stunning, high-performance websites built by DevNest.",
- url: "https://devnest.com",
- siteName: "DevNest",
- type: "website",
- images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUjFIzvpdQlJSAeIR8xofrsh8d/a-modern-web-development-dashboard-inter-1772654927340-7827f44c.png",
- alt: "DevNest Web Development",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "DevNest - Web Development Agency",
- description: "Custom websites and digital solutions for your business",
- images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUjFIzvpdQlJSAeIR8xofrsh8d/a-modern-web-development-dashboard-inter-1772654927340-7827f44c.png",
- ],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "DevNest - Web Development Services", description: "Build your digital presence with DevNest. We create stunning, high-performance websites that transform your business."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-