From d031d201a5a11adb55043c40e84df7679441c783 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 03:39:33 +0000 Subject: [PATCH] Switch to version 2: added src/app/about/page.tsx --- src/app/about/page.tsx | 63 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 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..c988d8d --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,63 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import TeamCardSix from "@/components/sections/team/TeamCardSix"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Users } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+
+

Our Story

+

Founded in a small barber shop in 2018, Webild was born from the idea that local business deserves world-class digital craft. We moved from cutting hair to cutting code, bringing the same precision, style, and personal touch to every website we build.

+
+
+ + +
+
+ ); +} \ No newline at end of file