From dcc273ab29241adbcffa7ed2cbff17b361375cbe Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 11:45:37 +0000 Subject: [PATCH 1/3] Add src/app/about/page.tsx --- src/app/about/page.tsx | 104 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 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..93def15 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,104 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import TextAbout from '@/components/sections/about/TextAbout'; +import TeamCardSix from '@/components/sections/team/TeamCardSix'; +import { Sparkles } from "lucide-react"; + +export default function AboutPage() { + const commonNavItems = [ + { name: "Work", id: "work" }, + { name: "Services", id: "services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + const commonContactButton = { text: "Get Started", href: "/contact" }; + + const commonFooterColumns = [ + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Services", href: "#services" }, + { label: "Work", href: "#work" }, + { label: "Contact", href: "/contact" } + ] + }, + { + title: "Services", items: [ + { label: "Web Development", href: "#" }, + { label: "SEO", href: "#" }, + { label: "Branding", href: "#" }, + { label: "UI/UX Design", href: "#" } + ] + }, + { + title: "Connect", items: [ + { label: "Twitter", href: "#" }, { label: "LinkedIn", href: "#" }, + { label: "Instagram", href: "#" }, + { label: "Dribbble", href: "#" } + ] + } + ]; + + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +} -- 2.49.1 From 54f9f4b7c9868ca13844f02385f0c760192eff94 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 11:45:37 +0000 Subject: [PATCH 2/3] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 90 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 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..19e6f24 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,90 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import { Phone } from "lucide-react"; + +export default function ContactPage() { + const commonNavItems = [ + { name: "Work", id: "work" }, + { name: "Services", id: "services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + const commonContactButton = { text: "Get Started", href: "/contact" }; + + const commonFooterColumns = [ + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Services", href: "#services" }, + { label: "Work", href: "#work" }, + { label: "Contact", href: "/contact" } + ] + }, + { + title: "Services", items: [ + { label: "Web Development", href: "#" }, + { label: "SEO", href: "#" }, + { label: "Branding", href: "#" }, + { label: "UI/UX Design", href: "#" } + ] + }, + { + title: "Connect", items: [ + { label: "Twitter", href: "#" }, + { label: "LinkedIn", href: "#" }, + { label: "Instagram", href: "#" }, + { label: "Dribbble", href: "#" } + ] + } + ]; + + return ( + + + + +
+ console.log("Contact form submitted with email:", email)} + className="py-20" + /> +
+ + +
+
+ ); +} -- 2.49.1 From e844471dddc11ddb96c4fe322139fe31afb866ee Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 11:45:38 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 252 ++++++++++++++++------------------------------- 1 file changed, 87 insertions(+), 165 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0165d48..8a890e4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; +import HeroSignup from "@/components/sections/hero/HeroSignup"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; @@ -13,7 +13,7 @@ import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBase from "@/components/sections/footer/FooterBase"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; -import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react"; +import { Sparkles, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users, Lightbulb, Share2, ClipboardList, Megaphone } from "lucide-react"; export default function WebAgency2Page() { return ( @@ -40,73 +40,51 @@ export default function WebAgency2Page() { ]} button={{ text: "Get Started", href: "#contact" }} /> - - +
+ console.log("Email submitted:", email)} + buttonAnimation="slide-up" + /> +
+
+ +
- +
+ +