From 852b8e6125bf3574d569e2ea38efba8ed9ef90af Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 01:07:19 +0000 Subject: [PATCH 1/4] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 106 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 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..d415641 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,106 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Github, Linkedin, Mail, MessageSquare, Phone, Twitter } from 'lucide-react'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file From 35017a31bf1339692df8f18895a033b1022e0dcd Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 01:07:20 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 22aaf99..a014a7e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1389,4 +1389,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file From 95fd86e35bc5de31523d73f1aba0aa877cc58e8d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 01:07:21 +0000 Subject: [PATCH 3/4] 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 5c4b9e3..ac5daf4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,10 +36,10 @@ export default function LandingPage() { { name: "Portfolio", id: "metrics" }, { name: "About", id: "about" }, { name: "Projects", id: "/projects" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "/contact" } ]} button={{ - text: "Get Started", href: "#contact" + text: "Get Started", href: "/contact" }} /> @@ -59,7 +59,7 @@ export default function LandingPage() { tagIcon={Sparkles} tagAnimation="slide-up" buttons={[ - { text: "Start Your Project", href: "#contact" }, + { text: "Start Your Project", href: "/contact" }, { text: "View Our Work", href: "#metrics" } ]} buttonAnimation="slide-up" @@ -97,7 +97,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="We transform ideas into impactful digital experiences that connect businesses with their audiences and drive measurable results" buttons={[ - { text: "Learn Our Story", href: "#contact" }, + { text: "Learn Our Story", href: "#about" }, { text: "Explore Services", href: "#services" } ]} buttonAnimation="opacity" @@ -326,4 +326,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file From 134d45b3cbd85e51032bcec59e6beba25523800b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 01:07:22 +0000 Subject: [PATCH 4/4] Update src/app/projects/page.tsx --- src/app/projects/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index f05f754..0d3e754 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -31,10 +31,10 @@ export default function ProjectsPage() { { name: "Portfolio", id: "/" }, { name: "About", id: "/" }, { name: "Projects", id: "/projects" }, - { name: "Contact", id: "/" } + { name: "Contact", id: "/contact" } ]} button={{ - text: "Get Started", href: "mailto:hello@webild.ee" + text: "Get Started", href: "/contact" }} /> @@ -185,7 +185,7 @@ export default function ProjectsPage() { title="Let's Create Your Success Story" description="Just like we transformed this e-commerce platform, we can help your business achieve remarkable results. Our proven methodology, expert team, and commitment to excellence ensure project success." buttons={[ - { text: "Start Your Project", href: "mailto:hello@webild.ee" }, + { text: "Start Your Project", href: "/contact" }, { text: "View More Projects", href: "/" } ]} background={{ variant: "plain" }} @@ -206,4 +206,4 @@ export default function ProjectsPage() { ); -} +} \ No newline at end of file