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 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 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 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 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}