+
+
+
+
+
+ console.log("Contact form submitted:", email)}
+ ariaLabel="Contact us form section"
+ />
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4dcbc8e..7400334 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,16 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Open_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 openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "Creative Web Agency | Webild Studio", description: "Award-winning creative web agency delivering stunning digital experiences. Expert design, development, and strategy for transformative results.", keywords: "web agency, web design, web development, digital agency, creative studio, UI/UX design", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Creative Web Agency | Webild Studio", description: "Award-winning creative web agency delivering stunning digital experiences.", siteName: "Webild Studio", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-vector/charts-set-pink-dashboard-user-panel_23-2148381985.jpg", alt: "Webild Studio - Creative Web Agency"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Creative Web Agency | Webild Studio", description: "Award-winning creative web agency delivering stunning digital experiences.", images: [
- "http://img.b2bpic.net/free-vector/charts-set-pink-dashboard-user-panel_23-2148381985.jpg"],
- },
-};
+ title: "Webild Studio - Creative Web Agency", description: "Transform your digital presence with stunning websites and digital experiences"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-