From 3a1b549cee6758b645ec7e88e4fcce940a948c05 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:51:42 +0000 Subject: [PATCH 1/2] Add src/app/about/page.tsx --- src/app/about/page.tsx | 131 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 131 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..75b7453 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,131 @@ +"use client"; + +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; +import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; +import { Zap, Code, CheckCircle, Users } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + {/* Opening Statement */} +
+
+

+ Breakpoints and Adaptability +

+

+ We believe that digital experiences should respond gracefully to every device, every screen size, and every user expectation. Just like responsive design adapts at breakpoints, we adapt our strategies to your unique challenges. +

+
+
+ + {/* Problem Section */} +
+
+

+ The Problem +

+
+
+

Static Websites

+

+ Many websites are rigid and inflexible, failing to adapt to user needs or changing market conditions. They look good on desktop but crumble on mobile, or they remain unchanged for years while competitors innovate. +

+
+
+

Slow Digital Experiences

+

+ Performance matters. Websites that load slowly, respond sluggishly, or fail to engage users create frustration and lost conversions. Speed and responsiveness are no longer nice-to-haves—they're essential. +

+
+
+
+
+ + {/* Solution Section */} +
+
+

+ Our Solution +

+
+

+ We create resilient digital experiences that adapt, perform, and inspire. Our approach combines strategic thinking, clean code, and aesthetic polish to deliver websites that don't just work—they thrive across every platform, every device, and every interaction. +

+
+
+
+ + {/* Three-Phase Section */} +
+ +
+ + {/* Closing Team Quote */} +
+ +
+
+ ); +} -- 2.49.1 From d3e2d485e242039b04f8cf85356090de519a4483 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:51:42 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 225 ++++++----------------------------------------- 1 file changed, 28 insertions(+), 197 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f6c1735..8104dd8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,213 +1,44 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroCentered from '@/components/sections/hero/HeroCentered'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { BarChart3, Palette, Smartphone, Zap } from "lucide-react"; - -export default function LandingPage() { - const handleContactSubmit = (email: string) => { - console.log("Contact form submitted with email:", email); - // Handle form submission - could send to API, email service, etc. - }; - - const handleFooterClick = (label: string) => { - console.log("Footer link clicked:", label); - }; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks"; +import { Sparkles } from "lucide-react"; +export default function Home() { return ( - - +
- -
- -
- -
- -
- -
- -
- console.log("Product 1 clicked") - }, - { - id: "2", brand: "Break Point", name: "E-Commerce Experience", price: "Premium", rating: 5, - reviewCount: "8.9k views", imageSrc: "http://img.b2bpic.net/free-psd/home-design-landing-page_23-2150443560.jpg", imageAlt: "E-commerce website design", onProductClick: () => console.log("Product 2 clicked") - }, - { - id: "3", brand: "Break Point", name: "Digital Agency Site", price: "Featured", rating: 5, - reviewCount: "15.2k views", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-fashion-design-landing-page_23-2149909571.jpg", imageAlt: "Agency website design", onProductClick: () => console.log("Product 3 clicked") - }, - ]} - gridVariant="uniform-all-items-equal" - animationType="slide-up" - textboxLayout="default" - useInvertedBackground={false} - /> -
- -
- -
- -
- -
- -
-- 2.49.1