diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f9f9025..4614f70 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,15 +1,16 @@ "use client"; -import { ThemeProvider } from "next-themes"; -import { NavbarStyleCentered } from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import { SplitAbout } from "@/components/sections/about/SplitAbout"; -import { FooterBase } from "@/components/sections/footer/FooterBase"; -import { Sparkles, Lightbulb, TrendingUp, Handshake } from "lucide-react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import SplitAbout from "@/components/sections/about/SplitAbout"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; import { useEffect, useState } from "react"; const navbarLinks = [ { name: "Home", id: "/" }, { name: "Features", id: "/features" }, - { name: "About", id: "/about" } + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Dashboard", id: "/dashboard/tracker" } ]; export default function AboutPage() { @@ -24,10 +25,6 @@ export default function AboutPage() { return ( - -
- +
- + + +
); diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 13c48c7..0d32ff6 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,36 +1,18 @@ "use client"; - -import React, { useState } from 'react'; -import { ThemeProvider } from "@/components/theme-provider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import GlowingOrbBackground from "@/components/background/GlowingOrbBackground"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import ContactText from "@/components/sections/contact/ContactText"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import Input from '@/components/form/Input'; -import ButtonBounceEffect from '@/components/button/ButtonBounceEffect/ButtonBounceEffect'; -import { Mail, Phone, MapPin } from 'lucide-react'; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +const navbarLinks = [ + { name: "Home", id: "/" }, + { name: "Features", id: "/features" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Dashboard", id: "/dashboard/tracker" } +]; export default function ContactPage() { - const [name, setName] = useState(''); - const [email, setEmail] = useState(''); - const [message, setMessage] = useState(''); - - const handleSubmit = (e: React.FormEvent) => { - e.preventDefault(); - // Handle form submission logic here - console.log('Form submitted:', { name, email, message }); - alert('Thank you for your message! We will get back to you shortly.'); - setName(''); - setEmail(''); - setMessage(''); - }; - - const navItems = [ - { name: 'Home', id: '/' }, - { name: 'Contact', id: '/contact' } - ]; - return ( - -
- -
-

Get in Touch

-

- Have a question or want to work together? Fill out the form below or reach out to us directly. -

- -
- {/* Contact Information Section */} -
- -

- We're here to help! Whether you have questions about our services, need support, or just want to say hello, our team is ready to connect. -

-
-
- -
-

Email Us

-

info@webild.com

-

support@webild.com

-
-
-
- -
-

Call Us

-

+1 (555) 123-4567

-
-
-
- -
-

Our Office

-

123 Main Street, Suite 400

-

Cityville, State, 12345

-

Country

-
-
-
-
- - {/* Contact Form Section */} -
-

Send us a Message

-
-
- - -
-
- - -
-
- - -
- - -
-
-
- +
+
+ +
+
); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 89a4143..31093eb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,15 +1,16 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; +import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Sparkles } from "lucide-react"; import { useEffect, useState } from "react"; const navbarLinks = [ { name: "Home", id: "/" }, { name: "Features", id: "/features" }, - { name: "About", id: "/about" } + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Dashboard", id: "/dashboard/tracker" } ]; export default function Home() { @@ -35,31 +36,31 @@ export default function Home() { secondaryButtonStyle="glass" headingFontWeight="bold" > - +
-