From 2c95175705490e2de8040b0baa743088164ee206 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 12:24:34 +0000 Subject: [PATCH] Add src/app/about/page.tsx --- src/app/about/page.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 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..0d1218f --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,21 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function AboutPage() { + return ( + + + +
+

About Us

+

We are a passionate team dedicated to sharing high-quality content and clean beauty.

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