From 3adbe67265e3acc2b1c86e4c201a7b8a2dd4c227 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:44:56 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 29 +++++------------------------ 1 file changed, 5 insertions(+), 24 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 03aac46..d84c7a6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; import "./globals.css"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { - title: "Webild Design - Award-Winning Digital Design Agency", description: - "Transform your brand with exceptional web design and development services. We create stunning digital experiences that drive engagement and results."}; + title: "Webild Design - Award-Winning Digital Design Agency", description: "Transform your brand with exceptional web design, development, and digital strategy. Award-winning agency specializing in stunning user experiences."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - {children} - + + {children} - ); } -- 2.49.1 From ebcea8280b84c70b96e5639cca9fddd377ec900d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:44:56 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 49 ++++++++++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 97e3d4f..2b7c998 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,8 +9,8 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import MetricCardTen from "@/components/sections/metrics/MetricCardTen"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Sparkles, Award, Star, Zap, Heart, HelpCircle, Lightbulb } from "lucide-react"; import Link from "next/link"; @@ -193,27 +193,27 @@ export default function HomePage() {
-
); -} \ No newline at end of file +} -- 2.49.1