Add src/app/about-us/page.tsx

This commit is contained in:
2026-04-02 20:33:09 +00:00
parent df0c0f2341
commit 523adae062

27
src/app/about-us/page.tsx Normal file
View File

@@ -0,0 +1,27 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function AboutUsPage() {
return (
<ThemeProvider>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Pricing", href: "/pricing" },
{ name: "Contact", id: "contact" },
]}
brandName="SublimeSites"
/>
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Crafting digital experiences that grow businesses." }]}
useInvertedBackground={false}
/>
</ThemeProvider>
);
}