From 82e6bcd96aef3b4470cac12d8e4d54c59c9e2b12 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:32:21 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7c3b4f3..e58831b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { ThemeProvider } from '@/components/theme'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import TeamCardFive from '@/components/sections/team/TeamCardFive'; -- 2.49.1 From 264496b0d044d392375f25074ea4945426ef9f16 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:32:21 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 230 +++++++++++++++++++-------------------- 1 file changed, 112 insertions(+), 118 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7115dca..e70861a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,10 +1,9 @@ 'use client'; -import { ThemeProvider } from '@/components/theme/ThemeProvider'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { ReactLenis } from '@/components/common/ReactLenis'; import { Mail, Phone, MapPin } from 'lucide-react'; export default function ContactPage() { @@ -21,136 +20,131 @@ export default function ContactPage() { secondaryButtonStyle="glass" headingFontWeight="semibold" > - - + + {/* Contact Form Section */} +
+ console.log('Email submitted:', email)} /> +
- {/* Contact Form Section */} -
- console.log('Email submitted:', email)} - /> -
+ {/* Contact Details Section */} +
+
+
+

Contact Information

+

+ Prefer to reach out directly? Here's how you can get in touch with our team. +

+
- {/* Contact Details Section */} -
-
-
-

Contact Information

-

- Prefer to reach out directly? Here's how you can get in touch with our team. +

+ {/* Email */} +
+
+ +
+

Email

+

+ + hello@webild.com +

+

We respond within 24 hours

-
- {/* Email */} -
-
- -
-

Email

-

- - hello@webild.com - -

-

We respond within 24 hours

+ {/* Phone */} +
+
+
+

Phone

+

+ + +1 (234) 567-890 + +

+

Mon-Fri, 9am-6pm EST

+
- {/* Phone */} -
-
- -
-

Phone

-

- - +1 (234) 567-890 - -

-

Mon-Fri, 9am-6pm EST

-
- - {/* Location */} -
-
- -
-

Location

-

- San Francisco, CA
- United States -

-

Available for remote work globally

+ {/* Location */} +
+
+
+

Location

+

+ San Francisco, CA
+ United States +

+

Available for remote work globally

+
- {/* WhatsApp Floating Button */} - + + + +
- - + ); } -- 2.49.1 From a988420d06a425cee2dbbeeec35df2ede90624fd Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:32:22 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a88944a..28128b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,8 +3,6 @@ import type { Metadata } from 'next'; import { Lora } from 'next/font/google'; import './globals.css'; -import { ServiceWrapper } from '@/components/common/ServiceWrapper'; -import { Tag } from '@/components/common/Tag'; const lora = Lora({ variable: '--font-lora', @@ -25,10 +23,7 @@ export default function RootLayout({ return ( - - - {children} - + {children}