From bb40592b96cd7a88ae9f33f5cd26821b217dc1e8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:23:08 +0000 Subject: [PATCH 1/6] Add src/app/about/page.tsx --- src/app/about/page.tsx | 212 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..5766d84 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,212 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Award, Users, Leaf, CheckCircle, Mail, Sparkles, ArrowRight, Shield, BarChart3 } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file From 8a38cd0561edb20297fec83103628fef18494b87 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:23:09 +0000 Subject: [PATCH 2/6] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 149 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..722d553 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,149 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Mail, Phone, MapPin } from 'lucide-react'; + +export default function ContactPage() { + const handleSubmit = (data: Record) => { + console.log('Form submitted:', data); + // Handle form submission + }; + + return ( + + + +
+ +
+ +
+
+
+
+
+
+ +
+
+

Our Office

+

123 Business Avenue
San Francisco, CA 94105
United States

+
+ +
+
+
+ +
+
+

Email Us

+

hello@webild.com
support@webild.com

+
+ +
+
+
+ +
+
+

Call Us

+

+1 (415) 555-1234
Monday - Friday, 9am - 6pm PST

+
+
+
+
+ + +
+ ); +} \ No newline at end of file From b0b267f16cb1119edb45f61d406886f22c2059cd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:23:09 +0000 Subject: [PATCH 3/6] Add src/app/our-trees/page.tsx --- src/app/our-trees/page.tsx | 263 +++++++++++++++++++++++++++++++++++++ 1 file changed, 263 insertions(+) create mode 100644 src/app/our-trees/page.tsx diff --git a/src/app/our-trees/page.tsx b/src/app/our-trees/page.tsx new file mode 100644 index 0000000..09031e5 --- /dev/null +++ b/src/app/our-trees/page.tsx @@ -0,0 +1,263 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; +import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Leaf, Shield, Award, Mail, Sparkles, ArrowRight, CheckCircle, BarChart3 } from 'lucide-react'; + +export default function OurTreesPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file From a3ec908b25ba1a5774d881035574d31277275751 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:23:10 +0000 Subject: [PATCH 4/6] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 738a4f5..b79819f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,7 +30,7 @@ export default function LandingPage() { { name: "Home", id: "hero" }, { name: "Features", id: "features" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "/contact" } ]} brandName="Webild" /> @@ -41,7 +41,7 @@ export default function LandingPage() { logoText="Welcome to Webild" description="Build amazing digital experiences with our cutting-edge platform and expert solutions" buttons={[ - { text: "Get Started", href: "#contact" }, + { text: "Get Started", href: "/contact" }, { text: "Learn More", href: "#features" } ]} slides={[ @@ -139,7 +139,7 @@ export default function LandingPage() { title="Ready to Get Started?" description="Join thousands of satisfied customers who have transformed their business. Contact us today to schedule a demo or ask any questions." buttons={[ - { text: "Schedule Demo", href: "mailto:demo@webild.com" }, + { text: "Schedule Demo", href: "/contact" }, { text: "Contact Sales", href: "mailto:sales@webild.com" } ]} buttonAnimation="slide-up" @@ -172,7 +172,7 @@ export default function LandingPage() { { label: "Documentation", href: "#" }, { label: "Community", href: "#" }, { label: "Support", href: "#" }, - { label: "Contact", href: "#contact" } + { label: "Contact", href: "/contact" } ] }, { @@ -189,4 +189,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file From 0404517982467c371b74a0bf8047806d5a2fc41d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:23:10 +0000 Subject: [PATCH 5/6] Add src/app/reviews/page.tsx --- src/app/reviews/page.tsx | 146 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 src/app/reviews/page.tsx diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx new file mode 100644 index 0000000..dfb8034 --- /dev/null +++ b/src/app/reviews/page.tsx @@ -0,0 +1,146 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Star, Users } from 'lucide-react'; + +export default function ReviewsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} From 4363d4dd9d36f8ea168a80f4914fbbfec7adbd15 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:23:10 +0000 Subject: [PATCH 6/6] Add src/app/visit-us/page.tsx --- src/app/visit-us/page.tsx | 158 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 src/app/visit-us/page.tsx diff --git a/src/app/visit-us/page.tsx b/src/app/visit-us/page.tsx new file mode 100644 index 0000000..2d86eee --- /dev/null +++ b/src/app/visit-us/page.tsx @@ -0,0 +1,158 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { MapPin, Clock, Phone, Mail, Navigation, CheckCircle } from 'lucide-react'; + +export default function VisitUsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}