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'; 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 */} - + + + +
- - + ); } 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}