From a945932585e1d517862b3fe7f8049c97a10e67f5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:41:33 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1442 +------------------------------------------- 1 file changed, 20 insertions(+), 1422 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 44cfaa1..e0c934d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/common/tag/Tag"; 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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], + variable: "--font-inter", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Webild Design | Award-Winning Web Design Agency", - description: "Webild Design creates stunning, high-performance websites and digital experiences for innovative brands. Specializing in web design, development, and digital strategy.", - keywords: "web design agency, web development, digital design, UX/UI design, brand strategy, website design, creative agency", - metadataBase: new URL("https://webild.design"), - alternates: { - canonical: "https://webild.design", - }, - openGraph: { - title: "Webild Design | Award-Winning Web Design Agency", - description: "Elevate your brand with exceptional digital design and development. We craft stunning web experiences that drive results.", - siteName: "Webild Design", - url: "https://webild.design", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/a-stunning-modern-web-design-portfolio-s-1773001369643-8f33360c.png", - alt: "Webild Design Portfolio Showcase", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Webild Design | Award-Winning Web Design Agency", - description: "Exceptional web design and development for forward-thinking brands.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/a-stunning-modern-web-design-portfolio-s-1773001369643-8f33360c.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + 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."}; export default function RootLayout({ children, @@ -63,1379 +20,13 @@ export default function RootLayout({ }>) { return ( - - + + {children} - - + ); -} \ No newline at end of file +} -- 2.49.1 From 256f701ba4216adab6443de47cef1c7f3112c379 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:41:33 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 35 +++++++++++------------------------ 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 18da216..97e3d4f 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 ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Sparkles, Award, Star, Zap, Heart, HelpCircle, Lightbulb } from "lucide-react"; import Link from "next/link"; @@ -361,40 +361,27 @@ export default function HomePage() {
-
-- 2.49.1 From a4647981e1cce733dc766cfde53580afbe47d220 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:41:34 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d12c3c0..a1cf441 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f6f7; - --card: #ffffff; - --foreground: #250c0d; - --primary-cta: #b82b40; + --background: #ffffff; + --card: #f5f5f5; + --foreground: #1a1a1a; + --primary-cta: #0052cc; --primary-cta-text: #f7f6f7; --secondary-cta: #ffffff; --secondary-cta-text: #250c0d; - --accent: #b90941; - --background-accent: #e8a8b6; + --accent: #6c5ce7; + --background-accent: #e8deff; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1