diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..447562a --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "next-themes"; +import { MediaAbout } from '@/components/sections/about/MediaAbout'; +import { NavbarLayoutFloatingInline } from '@/components/navbar/NavbarLayoutFloatingInline'; + +export default function AboutUsPage() { + return ( + + +
+ + + + + + + +
+
+ ); +}